Interface RequestArgumentBinder<T>

Type Parameters:
T - A type
All Superinterfaces:
io.micronaut.core.bind.ArgumentBinder<T,HttpRequest<?>>
All Known Subinterfaces:
AnnotatedRequestArgumentBinder<A,T>, BodyArgumentBinder<T>, NonBlockingBodyArgumentBinder<T>, PostponedRequestArgumentBinder<T>, TypedRequestArgumentBinder<T>
All Known Implementing Classes:
CookieAnnotationBinder, CookieObjectArgumentBinder, DefaultBodyAnnotationBinder, DefaultUnmatchedRequestArgumentBinder, HeaderAnnotationBinder, PartAnnotationBinder, PathVariableAnnotationBinder, QueryValueArgumentBinder, RequestAttributeAnnotationBinder, RequestBeanAnnotationBinder

@Indexed(RequestArgumentBinder.class) public interface RequestArgumentBinder<T> extends io.micronaut.core.bind.ArgumentBinder<T,HttpRequest<?>>
A binder that binds from an HttpRequest.
Since:
1.0
  • Nested Class Summary

    Nested classes/interfaces inherited from interface io.micronaut.core.bind.ArgumentBinder

    io.micronaut.core.bind.ArgumentBinder.BindingResult<T extends Object>
  • Method Summary

    Modifier and Type
    Method
    Description
    default @NonNull RequestArgumentBinder<T>
    createSpecific(@NonNull io.micronaut.core.type.Argument<T> argument)
    Create a specific binder.

    Methods inherited from interface io.micronaut.core.bind.ArgumentBinder

    bind
  • Method Details

    • createSpecific

      @NonNull default @NonNull RequestArgumentBinder<T> createSpecific(@NonNull @NonNull io.micronaut.core.type.Argument<T> argument)
      Create a specific binder.
      Specified by:
      createSpecific in interface io.micronaut.core.bind.ArgumentBinder<T,HttpRequest<?>>
      Parameters:
      argument - The bound argument
      Returns:
      The specific binder
      Since:
      4.8