Package io.micronaut.http.bind.binders
Interface PostponedRequestArgumentBinder<T>
- Type Parameters:
T
- A type
- All Superinterfaces:
ArgumentBinder<T,
,HttpRequest<?>> RequestArgumentBinder<T>
- All Known Implementing Classes:
DefaultUnmatchedRequestArgumentBinder
,RequestAttributeAnnotationBinder
,RequestBeanAnnotationBinder
Marker interface for
RequestArgumentBinder
to indicate that it should bind after filters are applied.- Since:
- 4.0.0
- Author:
- Denis Stepanov
-
Nested Class Summary
Nested classes/interfaces inherited from interface io.micronaut.core.bind.ArgumentBinder
ArgumentBinder.BindingResult<T>
-
Method Summary
Modifier and TypeMethodDescriptiondefault ArgumentBinder.BindingResult<T>
bindPostponed
(ArgumentConversionContext<T> context, HttpRequest<?> request) Bind postponed the given argument from the given source.Methods inherited from interface io.micronaut.core.bind.ArgumentBinder
bind
-
Method Details
-
bindPostponed
default ArgumentBinder.BindingResult<T> bindPostponed(ArgumentConversionContext<T> context, HttpRequest<?> request) Bind postponed the given argument from the given source.- Parameters:
context
- TheArgumentConversionContext
request
- The request- Returns:
- An
Optional
of the value. If no binding was possibleOptional.empty()
-