Interface AuditRecord
- 
- All Superinterfaces:
- java.io.Serializable
 - All Known Implementing Classes:
- DefaultAuditRecord
 
 public interface AuditRecord extends java.io.SerializableA record about a single audit event
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetAction()A description of the action.java.lang.StringgetActionTarget()The target of the action.java.lang.StringgetActionValue()The value of the action.java.lang.StringgetActor()Who performed the event.java.lang.StringgetActorHost()Where the actor was when the action was performed.intgetOriginatingContext()The ApplicationScope where this record was generated fromjava.lang.StringgetOriginatingSystem()A Description of the originating system for this recordintgetStatusCode()The StatusCode that represents whether this action was successful or not.java.util.DategetTimestamp()The timestamp at which this record occured
 
- 
- 
- 
Method Detail- 
getActorjava.lang.String getActor() Who performed the event. Should be a username or appropriate system equivalent if the event was performed automatically by a program
 - 
getActorHostjava.lang.String getActorHost() Where the actor was when the action was performed. Should be an IP address or a hostname of a computer
 - 
getActionjava.lang.String getAction() A description of the action. Examples: "tag write", "tag delete", "tag edit", " query update", " login", "logout" "project save"
 - 
getActionTargetjava.lang.String getActionTarget() The target of the action.
 - 
getActionValuejava.lang.String getActionValue() The value of the action. Might not be present for all action types
 - 
getStatusCodeint getStatusCode() The StatusCode that represents whether this action was successful or not.
 - 
getTimestampjava.util.Date getTimestamp() The timestamp at which this record occured
 - 
getOriginatingSystemjava.lang.String getOriginatingSystem() A Description of the originating system for this record
 - 
getOriginatingContextint getOriginatingContext() The ApplicationScope where this record was generated from
 
- 
 
-