Uses of Class
io.undertow.httpcore.UndertowOption
-
Uses of UndertowOption in io.undertow.httpcore
Fields in io.undertow.httpcore declared as UndertowOptionModifier and TypeFieldDescriptionstatic final UndertowOption<Boolean>UndertowOptions.ALLOW_ENCODED_SLASHIf a request comes in with encoded / characters (i.e.static final UndertowOption<Boolean>UndertowOptions.ALLOW_EQUALS_IN_COOKIE_VALUEIf this is true then Undertow will allow non-escaped equals characters in unquoted cookie values.static final UndertowOption<Boolean>UndertowOptions.ALWAYS_SET_DATEIf this is true then a Date header will be added to all responses.static final UndertowOption<Boolean>UndertowOptions.DECODE_URLIf this is true then the parser will decode the URL and query parameters using the selected character encoding (UTF-8 by default).static final UndertowOption<Boolean>UndertowOptions.ENABLE_HTTP2If we should attempt to use HTTP2 for HTTPS connections.static final UndertowOption<Boolean>UndertowOptions.ENABLE_RFC6265_COOKIE_VALIDATIONIf this is true then Undertow will enable RFC6265 compliant cookie validation for Set-Cookie header instead of legacy backward compatible behavior.static final UndertowOption<Integer>UndertowOptions.MAX_BUFFERED_REQUEST_SIZEMaximum size of a buffered request, in bytesstatic final UndertowOption<Integer>UndertowOptions.MAX_COOKIESThe maximum number of cookies that will be parsed.static final UndertowOption<Long>UndertowOptions.MAX_ENTITY_SIZEThe default maximum size of the HTTP entity body.static final UndertowOption<Integer>UndertowOptions.MAX_HEADER_SIZEThe maximum size in bytes of a http request header.static final UndertowOption<Integer>UndertowOptions.MAX_HEADERSThe maximum number of headers that will be parsed.static final UndertowOption<Integer>UndertowOptions.MAX_PARAMETERSThe maximum number of parameters that will be parsed.static final UndertowOption<Long>UndertowOptions.MULTIPART_MAX_ENTITY_SIZEThe default maximum size of the HTTP entity body when using the mutiltipart parser.static final UndertowOption<Long>UndertowOptions.READ_TIMEOUTBlocking read timeout in milliseconds.static final UndertowOption<Boolean>UndertowOptions.RECORD_REQUEST_START_TIMEIf this is true then Undertow will record the request start time, to allow for request time to be loggedstatic final UndertowOption<Integer>UndertowOptions.SHUTDOWN_TIMEOUTThe server shutdown timeout in milliseconds after which the executor will be forcefully shut down interrupting tasks which are still executing.static final UndertowOption<String>UndertowOptions.URL_CHARSETIf this is true then the parser will decode the URL and query parameters using the selected character encoding (UTF-8 by default).static final UndertowOption<Integer>UndertowOptions.WORKER_ACCEPT_THREADSDeprecated.Methods in io.undertow.httpcore that return UndertowOptionMethods in io.undertow.httpcore that return types with arguments of type UndertowOptionMethods in io.undertow.httpcore with parameters of type UndertowOptionModifier and TypeMethodDescriptionbooleanUndertowOptionMap.contains(UndertowOption<?> option) static <T> UndertowOptionMapUndertowOptionMap.create(UndertowOption<T> key, T val) static <T1,T2> UndertowOptionMap UndertowOptionMap.create(UndertowOption<T1> key1, T1 val1, UndertowOption<T2> key2, T2 val2) booleanUndertowOptionMap.get(UndertowOption<Boolean> option, boolean defaultValue) <T> TUndertowOptionMap.get(UndertowOption<T> option) <T> TUndertowOptionMap.get(UndertowOption<T> option, T defaultValue) UndertowOptionMap.Builder.set(UndertowOption<T> option, T value)