SessionStatus

Represents the status of a session.

Entries

Link copied to clipboard
@SerialName(value = "abandoned")
ABANDONED

The session was abandoned client-side.

Link copied to clipboard
@SerialName(value = "active")
ACTIVE

The session is valid, and all activity is allowed.

Link copied to clipboard
@SerialName(value = "ended")
ENDED

The user signed out of the session, but the Session remains in the Client object.

Link copied to clipboard
@SerialName(value = "expired")
EXPIRED

The period of allowed activity for this session has passed.

Link copied to clipboard
@SerialName(value = "removed")
REMOVED

The user signed out of the session, and the Session was removed from the Client object.

Link copied to clipboard
@SerialName(value = "replaced")
REPLACED

The session has been replaced by another one, but the Session remains in the Client object.

Link copied to clipboard
@SerialName(value = "revoked")
REVOKED

The application ended the session, and the Session was removed from the Client object.

Link copied to clipboard
@SerialName(value = "unknown")
UNKNOWN

Unknown session status.

Properties

Link copied to clipboard

Returns a representation of an immutable list of all enum entries, in the order they're declared.

Functions

Link copied to clipboard

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Link copied to clipboard

Returns an array containing the constants of this enum type, in the order they're declared.