@Deprecated public enum ConnectionStatus extends Enum<ConnectionStatus>
INIT
- Behaviour is like in NORMAL
state. It is
just an indication that the session is in an initial phase before authentication.
ON_HOLD
- packets are not processed at all, they are
collected by instead for later time.
REDIRECT
- packets received by this connection are
being redirected to a different SM for processing.
NORMAL
- packets are processed in normal way.
Created: Wed Aug 13 20:58:33 2008Enum Constant and Description |
---|
INIT
Deprecated.
|
NORMAL
Deprecated.
|
ON_HOLD
Deprecated.
|
REDIRECT
Deprecated.
|
REMOTE
Deprecated.
|
TEMP
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
static ConnectionStatus |
valueOf(String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static ConnectionStatus[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConnectionStatus INIT
public static final ConnectionStatus ON_HOLD
public static final ConnectionStatus REDIRECT
public static final ConnectionStatus NORMAL
public static final ConnectionStatus TEMP
public static final ConnectionStatus REMOTE
public static ConnectionStatus[] values()
for (ConnectionStatus c : ConnectionStatus.values()) System.out.println(c);
public static ConnectionStatus 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 © 2018 "Tigase, Inc.". All rights reserved.