| Modifier and Type | Field and Description |
|---|---|
static UndertowOption<Boolean> |
UndertowOptions.ALLOW_ENCODED_SLASH
If a request comes in with encoded / characters (i.e.
|
static UndertowOption<Boolean> |
UndertowOptions.ALLOW_EQUALS_IN_COOKIE_VALUE
If this is true then Undertow will allow non-escaped equals characters in unquoted cookie values.
|
static UndertowOption<Boolean> |
UndertowOptions.ALWAYS_SET_DATE
If this is true then a Date header will be added to all responses.
|
static UndertowOption<Boolean> |
UndertowOptions.DECODE_URL
If this is true then the parser will decode the URL and query parameters using the selected character encoding (UTF-8 by default).
|
static UndertowOption<Boolean> |
UndertowOptions.ENABLE_HTTP2
If we should attempt to use HTTP2 for HTTPS connections.
|
static UndertowOption<Boolean> |
UndertowOptions.ENABLE_RFC6265_COOKIE_VALIDATION
If this is true then Undertow will enable RFC6265 compliant cookie validation for Set-Cookie header instead of legacy backward compatible behavior.
|
static UndertowOption<Integer> |
UndertowOptions.MAX_BUFFERED_REQUEST_SIZE
Maximum size of a buffered request, in bytes
|
static UndertowOption<Integer> |
UndertowOptions.MAX_COOKIES
The maximum number of cookies that will be parsed.
|
static UndertowOption<Long> |
UndertowOptions.MAX_ENTITY_SIZE
The default maximum size of the HTTP entity body.
|
static UndertowOption<Integer> |
UndertowOptions.MAX_HEADER_SIZE
The maximum size in bytes of a http request header.
|
static UndertowOption<Integer> |
UndertowOptions.MAX_HEADERS
The maximum number of headers that will be parsed.
|
static UndertowOption<Integer> |
UndertowOptions.MAX_PARAMETERS
The maximum number of parameters that will be parsed.
|
static UndertowOption<Long> |
UndertowOptions.MULTIPART_MAX_ENTITY_SIZE
The default maximum size of the HTTP entity body when using the mutiltipart parser.
|
static UndertowOption<Long> |
UndertowOptions.READ_TIMEOUT
Blocking read timeout in milliseconds.
|
static UndertowOption<Boolean> |
UndertowOptions.RECORD_REQUEST_START_TIME
If this is true then Undertow will record the request start time, to allow for request time to be logged
|
static UndertowOption<Integer> |
UndertowOptions.SHUTDOWN_TIMEOUT
The server shutdown timeout in milliseconds after which the executor will be forcefully shut down interrupting
tasks which are still executing.
|
static UndertowOption<String> |
UndertowOptions.URL_CHARSET
If this is true then the parser will decode the URL and query parameters using the selected character encoding (UTF-8 by default).
|
static UndertowOption<Integer> |
UndertowOptions.WORKER_ACCEPT_THREADS
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
static <T> UndertowOption<T> |
UndertowOption.create(String name,
Class<T> type) |
| Modifier and Type | Method and Description |
|---|---|
Iterator<Map.Entry<UndertowOption<?>,Object>> |
UndertowOptionMap.iterator() |
| Modifier and Type | Method and Description |
|---|---|
boolean |
UndertowOptionMap.contains(UndertowOption<?> option) |
static <T> UndertowOptionMap |
UndertowOptionMap.create(UndertowOption<T> key,
T val) |
static <T1,T2> UndertowOptionMap |
UndertowOptionMap.create(UndertowOption<T1> key1,
T1 val1,
UndertowOption<T2> key2,
T2 val2) |
static <T1,T2> UndertowOptionMap |
UndertowOptionMap.create(UndertowOption<T1> key1,
T1 val1,
UndertowOption<T2> key2,
T2 val2) |
boolean |
UndertowOptionMap.get(UndertowOption<Boolean> option,
boolean defaultValue) |
<T> T |
UndertowOptionMap.get(UndertowOption<T> option) |
<T> T |
UndertowOptionMap.get(UndertowOption<T> option,
T defaultValue) |
<T> UndertowOptionMap.Builder |
UndertowOptionMap.Builder.set(UndertowOption<T> option,
T value) |
Copyright © 2020 JBoss by Red Hat. All rights reserved.