See: Description
| Interface | Description | 
|---|---|
| AnnotatedRequestArgumentBinder<A extends Annotation,T> | An interface for classes that bind an  Argumentfrom anHttpRequestdriven 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  TypeArgumentBinderthat binds from anHttpRequest. | 
| Class | Description | 
|---|---|
| CookieAnnotationBinder<T> | An  AnnotatedArgumentBinderimplementation that uses theCookieValueannotation to trigger binding from an HTTPCookie. | 
| DefaultBodyAnnotationBinder<T> | Binds a String body argument. | 
| HeaderAnnotationBinder<T> | An  AnnotatedArgumentBinderimplementation that uses theHeaderannotation to trigger binding from an HTTP header. | 
| ParameterAnnotationBinder<T> | An  AnnotatedArgumentBinderimplementation that uses theQueryValueto trigger binding from an HTTP request parameter. | 
| PartAnnotationBinder<T> | Skips binding parts because they should be handled by a multipart processor. | 
| PathVariableAnnotationBinder<T> | Used for binding a parameter exclusively from a path variable. | 
| QueryValueArgumentBinder<T> | A binder for binding arguments annotated with @QueryValue. | 
| RequestAttributeAnnotationBinder<T> | An  AnnotatedArgumentBinderimplementation that uses theRequestAttributeannotation to trigger binding from an HTTP request attribute. | 
| RequestBeanAnnotationBinder<T> | Used to bind Bindable parameters to a Bean object. |