Class DefaultAuditRecord
java.lang.Object
com.inductiveautomation.ignition.gateway.audit.DefaultAuditRecord
- All Implemented Interfaces:
AuditRecord
,Serializable
A simple immutable implementation of AuditRecord
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionDefaultAuditRecord
(AuditAction action, String actionTarget, String actionValue, String actor, String actorHost, int originatingContext, String originatingSystem) Uses a GOOD status code and the current timestampDefaultAuditRecord
(String action, String actionTarget, String actionValue, String actor, String actorHost, int originatingContext, String originatingSystem, int statusCode, Date timestamp) -
Method Summary
Modifier and TypeMethodDescriptionA description of the action.The target of the action.The value of the action.getActor()
Who performed the event.Where the actor was when the action was performed.int
The ApplicationScope where this record was generated fromA Description of the originating system for this recordint
The StatusCode that represents whether this action was successful or not.The timestamp at which this record occuredtoString()
-
Constructor Details
-
Method Details
-
getAction
Description copied from interface:AuditRecord
A description of the action. Examples: "tag write", "tag delete", "tag edit", " query update", " login", "logout" "project save"- Specified by:
getAction
in interfaceAuditRecord
-
getActionTarget
Description copied from interface:AuditRecord
The target of the action.- Specified by:
getActionTarget
in interfaceAuditRecord
-
getActionValue
Description copied from interface:AuditRecord
The value of the action. Might not be present for all action types- Specified by:
getActionValue
in interfaceAuditRecord
-
getActor
Description copied from interface:AuditRecord
Who performed the event. Should be a username or appropriate system equivalent if the event was performed automatically by a program- Specified by:
getActor
in interfaceAuditRecord
-
getActorHost
Description copied from interface:AuditRecord
Where the actor was when the action was performed. Should be an IP address or a hostname of a computer- Specified by:
getActorHost
in interfaceAuditRecord
-
getOriginatingContext
public int getOriginatingContext()Description copied from interface:AuditRecord
The ApplicationScope where this record was generated from- Specified by:
getOriginatingContext
in interfaceAuditRecord
-
getOriginatingSystem
Description copied from interface:AuditRecord
A Description of the originating system for this record- Specified by:
getOriginatingSystem
in interfaceAuditRecord
-
getStatusCode
public int getStatusCode()Description copied from interface:AuditRecord
The StatusCode that represents whether this action was successful or not.- Specified by:
getStatusCode
in interfaceAuditRecord
-
getTimestamp
Description copied from interface:AuditRecord
The timestamp at which this record occured- Specified by:
getTimestamp
in interfaceAuditRecord
-
toString
-