public enum ClusteredSessionNotificationCause extends Enum<ClusteredSessionNotificationCause>
Enum Constant and Description |
---|
ACTIVATION
The session is being activated.
|
CREATE
Session has been newly created.
|
FAILAWAY
Session has failed over and is no longer active on the local node.
|
FAILOVER
Session has failed over and is now in use on the local node.
|
INVALIDATE
Session is being invalidated by the application.
|
MODIFY
Session has been modified by the application.
|
PASSIVATION
The session is being passivated.
|
REPLICATION
The session is being replicated.
|
STATE_TRANSFER
Local node became aware of a session active on another node as a result of the local node receiving a bulk state transfer
due to its being elected to provide backup for that other node's sessions.
|
TIMEOUT
Session is being expired by the container due to timeout.
|
UNDEPLOY
Session is being expired by the container due to undeploy of the web application.
|
Modifier and Type | Method and Description |
---|---|
static ClusteredSessionNotificationCause |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ClusteredSessionNotificationCause[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ClusteredSessionNotificationCause CREATE
public static final ClusteredSessionNotificationCause MODIFY
public static final ClusteredSessionNotificationCause FAILOVER
public static final ClusteredSessionNotificationCause FAILAWAY
public static final ClusteredSessionNotificationCause INVALIDATE
public static final ClusteredSessionNotificationCause TIMEOUT
public static final ClusteredSessionNotificationCause UNDEPLOY
public static final ClusteredSessionNotificationCause STATE_TRANSFER
public static final ClusteredSessionNotificationCause PASSIVATION
public static final ClusteredSessionNotificationCause ACTIVATION
public static final ClusteredSessionNotificationCause REPLICATION
public static ClusteredSessionNotificationCause[] values()
for (ClusteredSessionNotificationCause c : ClusteredSessionNotificationCause.values()) System.out.println(c);
public static ClusteredSessionNotificationCause 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 © 2013 JBoss, a division of Red Hat, Inc.. All Rights Reserved.