Package org.openiam.srvc.audit
Interface IdmAuditLogWebDataService
-
- All Known Implementing Classes:
IdmAuditLogWebDataServiceImpl
public interface IdmAuditLogWebDataService
Interface forIdmAuditLogDataService
. All audit logging activities persisted through this service.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description Response
addLog(IdmAuditLogDoc record)
Response
addLogs(List<IdmAuditLogDoc> events)
int
count(AuditLogSearchBean searchBean)
List<IdmAuditLogDoc>
findBeans(AuditLogSearchBean searchBean, int from, int size)
Deprecated.IdmAuditLogListResponse
findBeansList(AuditLogSearchBean searchBean, int from, int size)
List<String>
getIds(AuditLogSearchBean searchBean, int from, int size)
IdmAuditLogDoc
getLogRecord(String id)
Response
purgeAuditLog(List<IdmAuditLogDoc> auditLogDocs)
-
-
-
Method Detail
-
getLogRecord
IdmAuditLogDoc getLogRecord(String id)
-
addLogs
Response addLogs(List<IdmAuditLogDoc> events)
-
addLog
Response addLog(IdmAuditLogDoc record)
-
purgeAuditLog
Response purgeAuditLog(List<IdmAuditLogDoc> auditLogDocs)
-
findBeans
@Deprecated List<IdmAuditLogDoc> findBeans(AuditLogSearchBean searchBean, int from, int size)
Deprecated.
-
findBeansList
IdmAuditLogListResponse findBeansList(AuditLogSearchBean searchBean, int from, int size)
-
getIds
List<String> getIds(AuditLogSearchBean searchBean, int from, int size)
-
count
int count(AuditLogSearchBean searchBean)
-
-