|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface IAuditEventDao
| Method Summary | |
|---|---|
int |
count()
Count the AuditEvents in this database |
boolean |
exists(UUID uuid)
Checks whether an AuditEvent with a matching uuid exists in the database |
AuditEvent |
findByDate(org.joda.time.DateTime dateTime)
Returns the AuditEvent that represents the given DateTime |
AuditEvent |
findById(Integer id)
Find the AuditEvent with an identifier equal to the parameter |
AuditEvent |
findByUuid(UUID uuid)
Find the AuditEvent with a uuid (surrogate key) equal to the uuid supplied |
AuditEvent |
getNextAuditEvent(AuditEvent auditEvent)
Returns the AuditEvent immediately proceeding the audit event passed as an argument |
AuditEvent |
getPreviousAuditEvent(AuditEvent auditEvent)
Returns the AuditEvent immediately preceding the audit event passed as an argument |
List<AuditEvent> |
list(Integer limit,
Integer start,
AuditEventSort sort)
Returns a sublist of AuditEvent instances stored in the database. |
| Method Detail |
|---|
AuditEvent findById(Integer id)
id -
AuditEvent findByUuid(UUID uuid)
uuid -
int count()
List<AuditEvent> list(Integer limit,
Integer start,
AuditEventSort sort)
limit - the maximum number of entities returned (can be null to return all entities)start - sort - Whether the list is sorted going forward in time (AuditEventSort.FORWARDS)
or backwards (AuditEventSort.BACKWARDS)
AuditEvent getNextAuditEvent(AuditEvent auditEvent)
auditEvent -
AuditEvent getPreviousAuditEvent(AuditEvent auditEvent)
auditEvent -
boolean exists(UUID uuid)
uuid -
AuditEvent findByDate(org.joda.time.DateTime dateTime)
dateTime -
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||