Uses of Class
com.avoka.fc.core.entity.AuditLog
-
Packages that use AuditLog Package Description com.avoka.fc.core.dao Provides the Data Access Objects used by SmartForm Manager.com.avoka.fc.core.entity.auto Provides the SmartForm Manager entity base classes, which are being maintained by Cayenne.com.avoka.fc.core.sysevent -
-
Uses of AuditLog in com.avoka.fc.core.dao
Methods in com.avoka.fc.core.dao that return AuditLog Modifier and Type Method Description AuditLog
AuditLogDao. createAuditLogRecord(BaseEntity entity, String message, String type)
Create an audit log recordAuditLog
AuditLogDao. createAuditLogRecord(BaseEntity entity, String message, String type, Submission submission)
Create an audit log recordMethods in com.avoka.fc.core.dao that return types with arguments of type AuditLog Modifier and Type Method Description List<AuditLog>
AuditLogDao. getAuditLogList(String clientId, String changedBy, String operation, String message, String entityName, String entityId, Date startDate, Date endDate, int pageSize, int fetchLimit)
Return a list of audit log records matching the search criteriaList<AuditLog>
AuditLogDao. getAuditLogList(String clientId, String changedBy, String message, String entityName, String entityId, Date startDate, Date endDate, String sortBy, boolean ascending, int pageSize)
Return a list of audit log records matching the search criteriaList<AuditLog>
AuditLogDao. getAuditLogList(String clientId, String changedBy, String message, String entityName, String entityId, Date startDate, Date endDate, String sortBy, boolean ascending, int pageSize, int fetchLimit)
Return a list of audit log records matching the search criteriaMethod parameters in com.avoka.fc.core.dao with type arguments of type AuditLog Modifier and Type Method Description void
AuditLogDao. iterateOverFullAuditLog(org.apache.cayenne.ResultIteratorCallback<AuditLog> op)
Iterates over the FULL audit log, sorted ascending by audit datetime, applying provided callback. -
Uses of AuditLog in com.avoka.fc.core.entity.auto
Fields in com.avoka.fc.core.entity.auto with type parameters of type AuditLog Modifier and Type Field Description static org.apache.cayenne.exp.Property<List<AuditLog>>
_Submission. AUDIT_LOGS
Provides the 'AUDIT_LOGS' property.static org.apache.cayenne.exp.Property<List<AuditLog>>
_UserAccount. AUDIT_LOGS
Provides the 'AUDIT_LOGS' property.Methods in com.avoka.fc.core.entity.auto that return types with arguments of type AuditLog Modifier and Type Method Description List<AuditLog>
_Submission. getAuditLogs()
Return the AuditLogs.List<AuditLog>
_UserAccount. getAuditLogs()
Return the AuditLogs.Methods in com.avoka.fc.core.entity.auto with parameters of type AuditLog Modifier and Type Method Description void
_Submission. addToAuditLogs(AuditLog obj)
Add the AuditLogs object.void
_UserAccount. addToAuditLogs(AuditLog obj)
Add the AuditLogs object.void
_Submission. removeFromAuditLogs(AuditLog obj)
Remove the AuditLogs object.void
_UserAccount. removeFromAuditLogs(AuditLog obj)
Remove the AuditLogs object. -
Uses of AuditLog in com.avoka.fc.core.sysevent
Methods in com.avoka.fc.core.sysevent with parameters of type AuditLog Modifier and Type Method Description void
SysEventBuilder.ISysEventBuilder. addAuditLog(AuditLog al)
Registers the audit log for inclusion in the system event messages.
-