public static enum RemoteSession.DistributedMapKey extends java.lang.Enum<RemoteSession.DistributedMapKey> implements java.io.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 |
|---|---|
java.lang.String |
toString() |
static RemoteSession.DistributedMapKey |
valueOf(java.lang.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
Value must be List<Extension>.
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.
Session.getMaxBinaryMessageBufferSize()public static final RemoteSession.DistributedMapKey MAX_TEXT_MESSAGE_BUFFER_SIZE
Value must be int or Integer.
Session.getMaxTextMessageBufferSize()public static final RemoteSession.DistributedMapKey REQUEST_URI
Value must be URI.
Session.getRequestURI()public static final RemoteSession.DistributedMapKey REQUEST_PARAMETER_MAP
Value must be Map<String, List<String>>.
Session.getRequestParameterMap()public static final RemoteSession.DistributedMapKey QUERY_STRING
Value must be String.
Session.getQueryString()public static final RemoteSession.DistributedMapKey PATH_PARAMETERS
Value must be Map<String, String>.
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(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String toString()
toString in class java.lang.Enum<RemoteSession.DistributedMapKey>Copyright © 2012–2025 Oracle Corporation. All rights reserved.