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 UTCInstant
when thisILogoutAuditEvent
was generated.getUser()
Gets aString
that contains the name of the user whose logout generated thisILogoutAuditEvent
.Gets aString
that contains the unique identifier of the user whose logout generated thisILogoutAuditEvent
.toString()
Returns aString
representation of thisILogoutAuditEvent
.
-
Method Details
-
getTimestamp
Instant getTimestamp()Gets the UTCInstant
when thisILogoutAuditEvent
was generated.- Returns:
- See above.
-
getUserId
String getUserId()Gets aString
that 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 aString
that contains the name of the user whose logout generated thisILogoutAuditEvent
.- Returns:
- See above.
-
toString
String toString()Returns aString
representation of thisILogoutAuditEvent
.
-