See: Description
Interface | Description |
---|---|
AnnotatedRequestArgumentBinder<A extends Annotation,T> |
An interface for classes that bind an
Argument from an HttpRequest driven by
an annotation. |
BodyArgumentBinder<T> |
A binder that binds from a parsed request body.
|
NonBlockingBodyArgumentBinder<T> |
A marker interface for argument binders that are non-blocking.
|
RequestArgumentBinder<T> |
A binder that binds from an
HttpRequest . |
TypedRequestArgumentBinder<T> |
A
TypeArgumentBinder that binds from an HttpRequest . |
Class | Description |
---|---|
CookieAnnotationBinder<T> |
An
AnnotatedArgumentBinder implementation that uses the CookieValue
annotation to trigger binding from an HTTP Cookie . |
DefaultBodyAnnotationBinder<T> |
Binds a String body argument.
|
HeaderAnnotationBinder<T> |
An
AnnotatedArgumentBinder implementation that uses the Header
annotation to trigger binding from an HTTP header. |
ParameterAnnotationBinder<T> |
An
AnnotatedArgumentBinder implementation that uses the QueryValue
to trigger binding from an HTTP request parameter. |
PathVariableAnnotationBinder<T> |
Used for binding a parameter exclusively from a path variable.
|
RequestAttributeAnnotationBinder<T> |
An
AnnotatedArgumentBinder implementation that uses the RequestAttribute
annotation to trigger binding from an HTTP request attribute. |