Revision 2110
Added by Matt Jones almost 21 years ago
src/edu/ucsb/nceas/metacat/EventLog.java | ||
---|---|---|
134 | 134 |
DBConnectionPool.returnDBConnection(dbConn, serialNumber); |
135 | 135 |
} |
136 | 136 |
} |
137 |
|
|
138 |
/** |
|
139 |
* Get a report of the log events that match a set of filters. The |
|
140 |
* filter parameters can be omitted null; log records are subset based on |
|
141 |
* non-null filter parameters. |
|
142 |
* |
|
143 |
* @param ipAddress the internet protocol address for the event |
|
144 |
* @param principal the principal for the event (a username, etc) |
|
145 |
* @param docid the identifier of the document to which the event applies |
|
146 |
* @param event the string code for the event |
|
147 |
* @param startDate the date on which the event was logged |
|
148 |
* @param endDate the |
|
149 |
*/ |
|
150 |
public void getReport(String ipAddress, String principal, String docid, |
|
151 |
String event, Timestamp dateLogged) |
|
152 |
{ |
|
153 |
} |
|
137 | 154 |
} |
Also available in: Unified diff
Interim checkin of EventLog reporting structure. Still basically incomplete but compiles.