com.aol.acc
Enum AccSessionState

java.lang.Object
  extended by java.lang.Enum<AccSessionState>
      extended by com.aol.acc.AccSessionState
All Implemented Interfaces:
AccEnum, java.io.Serializable, java.lang.Comparable<AccSessionState>

public enum AccSessionState
extends java.lang.Enum<AccSessionState>
implements AccEnum

Values for the State property.


Enum Constant Summary
Challenging
           
Connecting
          Establishing connection
Disconnected
          Unintentionally disconnected
Negotiating
           
Offline
          Offline
Online
          Online
Paused
          Pause session, e.g.
SecurId
          Checking securid
SecurIdNextKey
          Checking securid, next key
Shutdown
          Normal signoff initiated
Starting
          Performing initialization
Transferring
          Transferring to BOS ball
UNKNOWNVALUE
           
Validating
          Checking authorization
 
Method Summary
 boolean equals(int i)
           
static AccSessionState intToEnum(int value)
           
 AccSessionState or(AccSessionState val)
           
 int value()
           
static AccSessionState valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static AccSessionState[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

UNKNOWNVALUE

public static final AccSessionState UNKNOWNVALUE

Offline

public static final AccSessionState Offline
Offline


Disconnected

public static final AccSessionState Disconnected
Unintentionally disconnected


Connecting

public static final AccSessionState Connecting
Establishing connection


Challenging

public static final AccSessionState Challenging

Validating

public static final AccSessionState Validating
Checking authorization


SecurId

public static final AccSessionState SecurId
Checking securid


SecurIdNextKey

public static final AccSessionState SecurIdNextKey
Checking securid, next key


Transferring

public static final AccSessionState Transferring
Transferring to BOS ball


Negotiating

public static final AccSessionState Negotiating

Starting

public static final AccSessionState Starting
Performing initialization


Online

public static final AccSessionState Online
Online


Shutdown

public static final AccSessionState Shutdown
Normal signoff initiated


Paused

public static final AccSessionState Paused
Pause session, e.g. hibernate or suspend

Method Detail

values

public static final AccSessionState[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(AccSessionState c : AccSessionState.values())
        System.out.println(c);

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

valueOf

public static AccSessionState valueOf(java.lang.String name)
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.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name

value

public final int value()
Specified by:
value in interface AccEnum

equals

public final boolean equals(int i)

or

public final AccSessionState or(AccSessionState val)

intToEnum

public static AccSessionState intToEnum(int value)