Uses of Class
io.undertow.util.AttachmentKey
Packages that use AttachmentKey
Package
Description
-
Uses of AttachmentKey in io.undertow.predicate
Fields in io.undertow.predicate declared as AttachmentKeyModifier and TypeFieldDescriptionstatic final AttachmentKey<Boolean>PredicatesHandler.DONEstatic done marker.static final AttachmentKey<Map<String,Object>> Predicate.PREDICATE_CONTEXTAttachment key that can be used to store additional predicate context that allows the predicates to store additional information.static final AttachmentKey<Boolean>PredicatesHandler.RESTART -
Uses of AttachmentKey in io.undertow.security.api
Fields in io.undertow.security.api declared as AttachmentKeyModifier and TypeFieldDescriptionstatic final AttachmentKey<AuthenticatedSessionManager>AuthenticatedSessionManager.ATTACHMENT_KEYThe attachment key that is used to attach the manager to the exchange -
Uses of AttachmentKey in io.undertow.security.impl
Fields in io.undertow.security.impl declared as AttachmentKeyModifier and TypeFieldDescriptionstatic final AttachmentKey<String>ExternalAuthenticationMechanism.EXTERNAL_AUTHENTICATION_TYPEstatic final AttachmentKey<String>ExternalAuthenticationMechanism.EXTERNAL_PRINCIPAL -
Uses of AttachmentKey in io.undertow.server
Fields in io.undertow.server declared as AttachmentKeyModifier and TypeFieldDescriptionstatic final AttachmentKey<Throwable>DefaultResponseListener.EXCEPTIONIf the default response listener was invoked as a result of an exception being thrown then the exception will be available under this attachment key.static final AttachmentKey<Map<String,String>> HttpServerExchange.REQUEST_ATTRIBUTESAttachment key that can be used to hold additional request attributesstatic final AttachmentKey<Boolean>HttpServerExchange.SECURE_REQUESTAttachment key that can be used as a flag of secure attribute -
Uses of AttachmentKey in io.undertow.server.handlers
Fields in io.undertow.server.handlers declared as AttachmentKeyModifier and TypeFieldDescriptionstatic final AttachmentKey<PathTemplateHandler.PathTemplateMatch>PathTemplateHandler.PATH_TEMPLATE_MATCHDeprecated.static final AttachmentKey<Throwable>ExceptionHandler.THROWABLEConstructors in io.undertow.server.handlers with parameters of type AttachmentKeyModifierConstructorDescriptionAttachmentHandler(AttachmentKey<T> key, HttpHandler next) AttachmentHandler(AttachmentKey<T> key, HttpHandler next, T instance) -
Uses of AttachmentKey in io.undertow.server.handlers.form
Fields in io.undertow.server.handlers.form declared as AttachmentKeyModifier and TypeFieldDescriptionstatic final AttachmentKey<FormData>FormDataParser.FORM_DATAWhen the form data is parsed it will be attached under this key. -
Uses of AttachmentKey in io.undertow.server.session
Fields in io.undertow.server.session declared as AttachmentKeyModifier and TypeFieldDescriptionstatic final AttachmentKey<SessionConfig>SessionConfig.ATTACHMENT_KEYstatic final AttachmentKey<SessionManager>SessionManager.ATTACHMENT_KEY -
Uses of AttachmentKey in io.undertow.util
Fields in io.undertow.util declared as AttachmentKeyModifier and TypeFieldDescriptionstatic final AttachmentKey<PathTemplateMatch>PathTemplateMatch.ATTACHMENT_KEYstatic final AttachmentKey<Boolean>HttpAttachments.PRE_CHUNKED_RESPONSEIf the valuetrueis attached to the exchange under this key then Undertow will assume that the underlying application has already taken care of chunking, and will not attempt to add its own chunk markers.static final AttachmentKey<io.netty.handler.codec.http.HttpHeaders>HttpAttachments.REQUEST_TRAILERSAttachment key for request trailers when using chunked encoding.static final AttachmentKey<Supplier<io.netty.handler.codec.http.HttpHeaders>>HttpAttachments.RESPONSE_TRAILER_SUPPLIERAttachment key for a supplier response trailers.static final AttachmentKey<io.netty.handler.codec.http.HttpHeaders>HttpAttachments.RESPONSE_TRAILERSAttachment key for response trailers.Methods in io.undertow.util that return AttachmentKeyModifier and TypeMethodDescriptionstatic <T> AttachmentKey<T>Construct a new simple attachment key.static <T> AttachmentKey<AttachmentList<T>>AttachmentKey.createList(Class<? super T> valueClass) Construct a new list attachment key.Methods in io.undertow.util that return types with arguments of type AttachmentKeyModifier and TypeMethodDescriptionprotected Map<AttachmentKey<?>,Object> AbstractAttachable.createAttachmentMap()Methods in io.undertow.util with parameters of type AttachmentKeyModifier and TypeMethodDescription<T> voidAbstractAttachable.addToAttachmentList(AttachmentKey<AttachmentList<T>> key, T value) Add a value to a list-typed attachment key.<T> voidAttachable.addToAttachmentList(AttachmentKey<AttachmentList<T>> key, T value) Add a value to a list-typed attachment key.<T> TAbstractAttachable.getAttachment(AttachmentKey<T> key) Get an attachment value.<T> TAttachable.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> TAbstractAttachable.putAttachment(AttachmentKey<T> key, T value) Set an attachment value.<T> TAttachable.putAttachment(AttachmentKey<T> key, T value) Set an attachment value.<T> TAbstractAttachable.removeAttachment(AttachmentKey<T> key) Remove an attachment, returning its previous value.<T> TAttachable.removeAttachment(AttachmentKey<T> key) Remove an attachment, returning its previous value.