public static enum RemoteSession.DistributedMapKey extends Enum<RemoteSession.DistributedMapKey> implements Serializable
| Enum Constant and Description |
|---|
CONNECTION_ID
Cluster connection Id.
|
MAX_BINARY_MESSAGE_BUFFER_SIZE
Max binary buffer size.
|
MAX_IDLE_TIMEOUT
Max idle timeout.
|
MAX_TEXT_MESSAGE_BUFFER_SIZE
Max text buffer size.
|
NEGOTIATED_EXTENSIONS
Negotiated extensions.
|
NEGOTIATED_SUBPROTOCOL
Negotiated subprotocol.
|
PATH_PARAMETERS
Path parameters.
|
QUERY_STRING
Query string.
|
REQUEST_PARAMETER_MAP
Request Parameter map.
|
REQUEST_URI
Request URI.
|
SECURE
Secure flag.
|
USER_PRINCIPAL
User principal.
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static RemoteSession.DistributedMapKey |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RemoteSession.DistributedMapKey[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RemoteSession.DistributedMapKey NEGOTIATED_SUBPROTOCOL
Value must be String.
Session.getNegotiatedSubprotocol()public static final RemoteSession.DistributedMapKey NEGOTIATED_EXTENSIONS
Session.getNegotiatedExtensions()public static final RemoteSession.DistributedMapKey SECURE
Value must be boolean or Boolean.
Session.isSecure()public static final RemoteSession.DistributedMapKey MAX_IDLE_TIMEOUT
Value must be long or Long.
Session.getMaxIdleTimeout()public static final RemoteSession.DistributedMapKey MAX_BINARY_MESSAGE_BUFFER_SIZE
Value must be int or Integer.
public static final RemoteSession.DistributedMapKey MAX_TEXT_MESSAGE_BUFFER_SIZE
Value must be int or Integer.
public static final RemoteSession.DistributedMapKey REQUEST_URI
Value must be URI.
Session.getRequestURI()public static final RemoteSession.DistributedMapKey REQUEST_PARAMETER_MAP
Session.getRequestParameterMap()public static final RemoteSession.DistributedMapKey QUERY_STRING
Value must be String.
Session.getQueryString()public static final RemoteSession.DistributedMapKey PATH_PARAMETERS
Session.getPathParameters()public static final RemoteSession.DistributedMapKey USER_PRINCIPAL
Value must be Principal.
Session.getUserPrincipal()public static final RemoteSession.DistributedMapKey CONNECTION_ID
Value must be String.
public static RemoteSession.DistributedMapKey[] values()
for (RemoteSession.DistributedMapKey c : RemoteSession.DistributedMapKey.values()) System.out.println(c);
public static RemoteSession.DistributedMapKey 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 nullpublic String toString()
toString in class Enum<RemoteSession.DistributedMapKey>Copyright © 2012-2017, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.