Package com.i2group.disco.audit
Interface ILogoutAuditEvent
public interface ILogoutAuditEvent
An event that was generated when a user logged out of i2 Analyze.
ILogoutAuditEvent makes
information about the operation available to the audit logging mechanism.- Since:
- 13.0
-
Method Summary
Modifier and TypeMethodDescriptionGets the UTCInstantwhen thisILogoutAuditEventwas generated.getUser()Gets aStringthat contains the name of the user whose logout generated thisILogoutAuditEvent.Gets aStringthat contains the unique identifier of the user whose logout generated thisILogoutAuditEvent.toString()Returns aStringrepresentation of thisILogoutAuditEvent.
-
Method Details
-
getTimestamp
Instant getTimestamp()Gets the UTCInstantwhen thisILogoutAuditEventwas generated.- Returns:
- See above.
-
getUserId
String getUserId()Gets aStringthat contains the unique identifier of the user whose logout generated thisILogoutAuditEvent. A user who was not authorized to use the application can still generate a logout event. In that case, the method returns an empty string.- Returns:
- See above.
- Since:
- 13.3
-
getUser
String getUser()Gets aStringthat contains the name of the user whose logout generated thisILogoutAuditEvent.- Returns:
- See above.
-
toString
String toString()Returns aStringrepresentation of thisILogoutAuditEvent.
-