public static enum Common.AuthSessionState extends Enum<Common.AuthSessionState>
| Enum Constant and Description |
|---|
NO_STATE_MAINTAINED
NO_STATE_MAINTAINED 1
This value is used to specify that no session
termination messages will be sent by the access device upon expiration of
the Authorization-Lifetime.
|
STATE_MAINTAINED
STATE_MAINTAINED 0.
|
| Modifier and Type | Method and Description |
|---|---|
static Common.AuthSessionState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Common.AuthSessionState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Common.AuthSessionState STATE_MAINTAINED
This value is used to specify that session state is being maintained, and the access device MUST issue a session termination message when service to the user is terminated. This is the default value.
public static final Common.AuthSessionState NO_STATE_MAINTAINED
This value is used to specify that no session termination messages will be sent by the access device upon expiration of the Authorization-Lifetime.
public static Common.AuthSessionState[] values()
for (Common.AuthSessionState c : Common.AuthSessionState.values()) System.out.println(c);
public static Common.AuthSessionState valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullCopyright © 2014. All Rights Reserved.