Modifier and Type | Field and Description |
---|---|
static AttachmentKey<org.xnio.OptionMap> |
UndertowOptions.ATTACHMENT_KEY |
Modifier and Type | Field and Description |
---|---|
static AttachmentKey<String> |
ProxiedRequestAttachments.AUTH_TYPE |
static AttachmentKey<Boolean> |
ProxiedRequestAttachments.IS_SSL |
static AttachmentKey<String> |
ProxiedRequestAttachments.REMOTE_ADDRESS |
static AttachmentKey<String> |
ProxiedRequestAttachments.REMOTE_HOST |
static AttachmentKey<String> |
ProxiedRequestAttachments.REMOTE_USER |
static AttachmentKey<String> |
ProxiedRequestAttachments.ROUTE |
static AttachmentKey<String> |
ProxiedRequestAttachments.SECRET |
static AttachmentKey<String> |
ProxiedRequestAttachments.SERVER_NAME |
static AttachmentKey<Integer> |
ProxiedRequestAttachments.SERVER_PORT |
static AttachmentKey<String> |
ProxiedRequestAttachments.SSL_CERT |
static AttachmentKey<String> |
ProxiedRequestAttachments.SSL_CYPHER |
static AttachmentKey<Integer> |
ProxiedRequestAttachments.SSL_KEY_SIZE |
static AttachmentKey<byte[]> |
ProxiedRequestAttachments.SSL_SESSION_ID |
static AttachmentKey<String> |
ProxiedRequestAttachments.STORED_METHOD |
Modifier and Type | Field and Description |
---|---|
static AttachmentKey<PipelingBufferingStreamSinkConduit> |
PipelingBufferingStreamSinkConduit.ATTACHMENT_KEY |
static AttachmentKey<HeaderMap> |
ChunkedStreamSourceConduit.TRAILERS
If the response has HTTP footers they are attached to the exchange under this key.
|
static AttachmentKey<HeaderMap> |
ChunkedStreamSinkConduit.TRAILERS
Trails that are to be attached to the end of the HTTP response.
|
Modifier and Type | Field and Description |
---|---|
static AttachmentKey<Map<String,Object>> |
Predicate.PREDICATE_CONTEXT
Attachment key that can be used to store additional predicate context that allows the predicates to store
additional information.
|
Modifier and Type | Field and Description |
---|---|
static AttachmentKey<SecurityContext> |
SecurityContext.ATTACHMENT_KEY
The attachment key that is used to attach this context to the exchange
|
static AttachmentKey<AuthenticatedSessionManager> |
AuthenticatedSessionManager.ATTACHMENT_KEY
The attachment key that is used to attach the manager to the exchange
|
Modifier and Type | Field and Description |
---|---|
static AttachmentKey<Executor> |
HttpServerExchange.DISPATCH_EXECUTOR
The executor that is to be used to dispatch the
HttpServerExchange.DISPATCH_TASK . |
static AttachmentKey<Runnable> |
HttpServerExchange.DISPATCH_TASK
When the call stack return this task will be executed by the executor specified in
HttpServerExchange.DISPATCH_EXECUTOR . |
Constructor and Description |
---|
AttachmentHandler(AttachmentKey<T> key,
HttpHandler next) |
AttachmentHandler(AttachmentKey<T> key,
HttpHandler next,
T instance) |
Modifier and Type | Field and Description |
---|---|
static AttachmentKey<ResponseCache> |
ResponseCache.ATTACHMENT_KEY |
Modifier and Type | Field and Description |
---|---|
static AttachmentKey<AllowedContentEncodings> |
AllowedContentEncodings.ATTACHMENT_KEY |
Modifier and Type | Field and Description |
---|---|
static AttachmentKey<FormData> |
FormDataParser.FORM_DATA
When the form data is parsed it will be attached under this key.
|
Modifier and Type | Field and Description |
---|---|
static AttachmentKey<SessionManager> |
SessionManager.ATTACHMENT_KEY |
Modifier and Type | Field and Description |
---|---|
static AttachmentKey<ServletRequestContext> |
ServletRequestContext.ATTACHMENT_KEY |
Modifier and Type | Field and Description |
---|---|
static AttachmentKey<Executor> |
AsyncContextImpl.ASYNC_EXECUTOR |
static AttachmentKey<Boolean> |
AsyncContextImpl.ASYNC_SUPPORTED |
Modifier and Type | Method and Description |
---|---|
<T> T |
ServletWebSocketHttpExchange.getAttachment(AttachmentKey<T> key) |
<T> void |
ServletWebSocketHttpExchange.putAttachment(AttachmentKey<T> key,
T value) |
Modifier and Type | Method and Description |
---|---|
static <T> AttachmentKey<T> |
AttachmentKey.create(Class<? super T> valueClass)
Construct a new simple attachment key.
|
static <T> AttachmentKey<AttachmentList<T>> |
AttachmentKey.createList(Class<? super T> valueClass)
Construct a new list attachment key.
|
Modifier and Type | Method and Description |
---|---|
<T> void |
AbstractAttachable.addToAttachmentList(AttachmentKey<AttachmentList<T>> key,
T value)
Add a value to a list-typed attachment key.
|
<T> void |
Attachable.addToAttachmentList(AttachmentKey<AttachmentList<T>> key,
T value)
Add a value to a list-typed attachment key.
|
<T> T |
AbstractAttachable.getAttachment(AttachmentKey<T> key)
Get an attachment value.
|
<T> T |
Attachable.getAttachment(AttachmentKey<T> key)
Get an attachment value.
|
<T> List<T> |
AbstractAttachable.getAttachmentList(AttachmentKey<? extends List<T>> key)
Gets a list attachment value.
|
<T> List<T> |
Attachable.getAttachmentList(AttachmentKey<? extends List<T>> key)
Gets a list attachment value.
|
<T> T |
AbstractAttachable.putAttachment(AttachmentKey<T> key,
T value)
Set an attachment value.
|
<T> T |
Attachable.putAttachment(AttachmentKey<T> key,
T value)
Set an attachment value.
|
<T> T |
AbstractAttachable.removeAttachment(AttachmentKey<T> key)
Remove an attachment, returning its previous value.
|
<T> T |
Attachable.removeAttachment(AttachmentKey<T> key)
Remove an attachment, returning its previous value.
|
Modifier and Type | Field and Description |
---|---|
static AttachmentKey<Map<String,String>> |
HandshakeUtil.PATH_PARAMS |
Modifier and Type | Method and Description |
---|---|
<T> T |
AsyncWebSocketHttpServerExchange.getAttachment(AttachmentKey<T> key) |
<T> T |
WebSocketHttpExchange.getAttachment(AttachmentKey<T> key) |
<T> void |
AsyncWebSocketHttpServerExchange.putAttachment(AttachmentKey<T> key,
T value) |
<T> void |
WebSocketHttpExchange.putAttachment(AttachmentKey<T> key,
T value) |
Copyright © 2013 JBoss by Red Hat. All rights reserved.