Package com.avoka.fc.core.entity
Class AuditLog
- java.lang.Object
-
- org.apache.cayenne.PersistentObject
-
- org.apache.cayenne.BaseDataObject
-
- org.apache.cayenne.CayenneDataObject
-
- com.avoka.core.entity.BaseEntity
-
- com.avoka.fc.core.entity.auto._AuditLog
-
- com.avoka.fc.core.entity.AuditLog
-
- All Implemented Interfaces:
IEntity
,Serializable
,org.apache.cayenne.DataObject
,org.apache.cayenne.Persistent
,org.apache.cayenne.Validating
public class AuditLog extends _AuditLog
Provides an audit log entity used to track changes made to sensitive data.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static String
EVENT_TYPE_CREATE
Implies that the action being audited is related to creating objectsstatic String
EVENT_TYPE_DELETE
Implies that the action being audited is related to deleting objectsstatic String
EVENT_TYPE_EXPORT
Implies that the action being audited is related to exporting objectsstatic String
EVENT_TYPE_IMPORT
Implies that the action being audited is related to importing objectsstatic String
EVENT_TYPE_UPDATE
Implies that the action being audited is related to modifying objectsstatic String
EVENT_TYPE_VIEW
Implies that the action being audited is related to viewing objects-
Fields inherited from class com.avoka.fc.core.entity.auto._AuditLog
AUDIT_DATETIME, AUDIT_DATETIME_PROPERTY, AUDIT_LOG_OID_PK_COLUMN, CHANGED_BY, CHANGED_BY_PROPERTY, CLIENT_OID, CLIENT_OID_PROPERTY, ENTITY_NAME, ENTITY_NAME_PROPERTY, ENTITY_OID, ENTITY_OID_PROPERTY, EVENT_TYPE, EVENT_TYPE_PROPERTY, IP_ADDRESS, IP_ADDRESS_PROPERTY, MESSAGE, MESSAGE_PROPERTY, SUBMISSION, SUBMISSION_PROPERTY, USER, USER_AGENT, USER_AGENT_PROPERTY, USER_PROPERTY
-
Fields inherited from class com.avoka.core.entity.BaseEntity
ID_PROPERTY
-
-
Constructor Summary
Constructors Constructor Description AuditLog()
-
Method Summary
-
Methods inherited from class com.avoka.fc.core.entity.auto._AuditLog
getAuditDatetime, getChangedBy, getClientOid, getEntityName, getEntityOid, getEventType, getIpAddress, getMessage, getSubmission, getUser, getUserAgent, setAuditDatetime, setChangedBy, setClientOid, setEntityName, setEntityOid, setEventType, setIpAddress, setMessage, setSubmission, setUser, setUserAgent
-
Methods inherited from class com.avoka.core.entity.BaseEntity
appendProperties, getId, getValuesMap, isNew, setId, toString
-
Methods inherited from class org.apache.cayenne.CayenneDataObject
makePath, readPropertyDirectly, readState, setPersistenceState, writePropertyDirectly, writeState
-
Methods inherited from class org.apache.cayenne.BaseDataObject
addToManyTarget, beforePropertyRead, beforePropertyWrite, getSnapshotVersion, readNestedProperty, readProperty, readSerialized, removeToManyTarget, setObjectContext, setReverseRelationship, setSnapshotVersion, setToManyTarget, setToOneTarget, toStringBuffer, unsetReverseRelationship, validateForDelete, validateForInsert, validateForSave, validateForUpdate, willConnect, writeProperty, writeSerialized
-
Methods inherited from class org.apache.cayenne.PersistentObject
getMapKey, getObjectContext, getObjectId, getPersistenceState, setObjectId
-
-
-
-
Field Detail
-
EVENT_TYPE_VIEW
public static final String EVENT_TYPE_VIEW
Implies that the action being audited is related to viewing objects- See Also:
- Constant Field Values
-
EVENT_TYPE_CREATE
public static final String EVENT_TYPE_CREATE
Implies that the action being audited is related to creating objects- See Also:
- Constant Field Values
-
EVENT_TYPE_UPDATE
public static final String EVENT_TYPE_UPDATE
Implies that the action being audited is related to modifying objects- See Also:
- Constant Field Values
-
EVENT_TYPE_DELETE
public static final String EVENT_TYPE_DELETE
Implies that the action being audited is related to deleting objects- See Also:
- Constant Field Values
-
EVENT_TYPE_IMPORT
public static final String EVENT_TYPE_IMPORT
Implies that the action being audited is related to importing objects- See Also:
- Constant Field Values
-
EVENT_TYPE_EXPORT
public static final String EVENT_TYPE_EXPORT
Implies that the action being audited is related to exporting objects- See Also:
- Constant Field Values
-
-