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 Details

    • getTimestamp

      Instant getTimestamp()
      Gets the UTC Instant when this ILogoutAuditEvent was generated.
      Returns:
      See above.
    • getUserId

      String getUserId()
      Gets a String that contains the unique identifier of the user whose logout generated this ILogoutAuditEvent. 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 a String that contains the name of the user whose logout generated this ILogoutAuditEvent.
      Returns:
      See above.
    • toString

      String toString()
      Returns a String representation of this ILogoutAuditEvent.
      Overrides:
      toString in class Object
      Returns:
      See above.