com.irisel.oms.olapi
Enum CLBrowser.AuthState

java.lang.Object
  extended by java.lang.Enum<CLBrowser.AuthState>
      extended by com.irisel.oms.olapi.CLBrowser.AuthState
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<CLBrowser.AuthState>
Enclosing interface:
CLBrowser

public static enum CLBrowser.AuthState
extends java.lang.Enum<CLBrowser.AuthState>


Enum Constant Summary
AUTH_ERR_ACCOUNT_INVALID
           
AUTH_ERR_NOT_AUTHORIZED
           
AUTH_ERR_TOO_MANY_FAILURES
           
AUTH_ERR_UNKNOWN
           
AUTH_FAILED
           
AUTH_INACTIVE
           
AUTH_OK
           
 
Method Summary
 java.lang.String getMesg()
           
 int getState()
           
 void setMesg(java.lang.String s)
           
 void setState(int state)
           
static CLBrowser.AuthState valueOf(int i)
           
static CLBrowser.AuthState valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static CLBrowser.AuthState[] values()
          Returns an array containing the constants of this enum type, in the order they are 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

AUTH_ERR_UNKNOWN

public static final CLBrowser.AuthState AUTH_ERR_UNKNOWN

AUTH_ERR_NOT_AUTHORIZED

public static final CLBrowser.AuthState AUTH_ERR_NOT_AUTHORIZED

AUTH_ERR_TOO_MANY_FAILURES

public static final CLBrowser.AuthState AUTH_ERR_TOO_MANY_FAILURES

AUTH_ERR_ACCOUNT_INVALID

public static final CLBrowser.AuthState AUTH_ERR_ACCOUNT_INVALID

AUTH_FAILED

public static final CLBrowser.AuthState AUTH_FAILED

AUTH_INACTIVE

public static final CLBrowser.AuthState AUTH_INACTIVE

AUTH_OK

public static final CLBrowser.AuthState AUTH_OK
Method Detail

values

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

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

valueOf

public static CLBrowser.AuthState 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
java.lang.NullPointerException - if the argument is null

valueOf

public static CLBrowser.AuthState valueOf(int i)

getState

public int getState()

setState

public void setState(int state)

setMesg

public void setMesg(java.lang.String s)

getMesg

public java.lang.String getMesg()