Package com.dtolabs.rundeck.core.audit
Interface AuditEvent
-
- All Superinterfaces:
java.io.Serializable
public interface AuditEvent extends java.io.SerializableDescribes an audit event generated by the system.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetActionType()The type of action that generated the event.RequestInfogetRequestInfo()ResourceInfogetResourceInfo()java.util.DategetTimestamp()UserInfogetUserInfo()
-
-
-
Method Detail
-
getTimestamp
java.util.Date getTimestamp()
- Returns:
- Timestamp of the event.
-
getActionType
java.lang.String getActionType()
The type of action that generated the event. Supported values can be found at @ActionTypes- Returns:
- Event type.
- See Also:
ActionTypes
-
getUserInfo
UserInfo getUserInfo()
- Returns:
- Information about the user which triggered the event.
-
getRequestInfo
RequestInfo getRequestInfo()
- Returns:
- Info about the request which triggered the event.
-
getResourceInfo
ResourceInfo getResourceInfo()
- Returns:
- Information about the resource affected by this event.
-
-