Package io.micronaut.http.client.bind
Interface AnnotatedClientArgumentRequestBinder<A extends java.lang.annotation.Annotation>
-
- Type Parameters:
A- An annotation
- All Superinterfaces:
ClientArgumentRequestBinder<java.lang.Object>,ClientRequestBinder
- All Known Implementing Classes:
QueryValueClientArgumentRequestBinder
public interface AnnotatedClientArgumentRequestBinder<A extends java.lang.annotation.Annotation> extends ClientArgumentRequestBinder<java.lang.Object>
An interface for classes that bind anArgumentto anMutableHttpRequestdriven by an annotation.- Since:
- 2.1.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Class<A>getAnnotationType()-
Methods inherited from interface io.micronaut.http.client.bind.ClientArgumentRequestBinder
bind
-
-
-
-
Method Detail
-
getAnnotationType
@NonNull java.lang.Class<A> getAnnotationType()
- Returns:
- The annotation type.
-
-