Class WebBindAnnotationMapper<T extends Annotation>
java.lang.Object
io.micronaut.spring.annotation.AbstractSpringAnnotationMapper
io.micronaut.spring.web.annotation.WebBindAnnotationMapper<T>
- Type Parameters:
T
- The target annotation type
- All Implemented Interfaces:
io.micronaut.core.naming.Named
,io.micronaut.inject.annotation.AnnotationMapper<Annotation>
,io.micronaut.inject.annotation.NamedAnnotationMapper
- Direct Known Subclasses:
CookieValueAnnotationMapper
,RequestHeaderAnnotationMapper
,RequestParamAnnotationMapper
,RequestPartAnnotationMapper
public abstract class WebBindAnnotationMapper<T extends Annotation>
extends AbstractSpringAnnotationMapper
Abstract web binding impl.
- Since:
- 1.0
- Author:
- graemerocher
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected List<io.micronaut.core.annotation.AnnotationValue<?>>
mapInternal
(io.micronaut.core.annotation.AnnotationValue<Annotation> annotation, io.micronaut.inject.visitor.VisitorContext visitorContext) Internal map implemenation that subclasses should implement.Methods inherited from class io.micronaut.spring.annotation.AbstractSpringAnnotationMapper
map
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface io.micronaut.core.naming.Named
getName
-
Constructor Details
-
WebBindAnnotationMapper
public WebBindAnnotationMapper()
-
-
Method Details
-
mapInternal
protected List<io.micronaut.core.annotation.AnnotationValue<?>> mapInternal(io.micronaut.core.annotation.AnnotationValue<Annotation> annotation, io.micronaut.inject.visitor.VisitorContext visitorContext) Description copied from class:AbstractSpringAnnotationMapper
Internal map implemenation that subclasses should implement.- Specified by:
mapInternal
in classAbstractSpringAnnotationMapper
- Parameters:
annotation
- The annotationvisitorContext
- The visitor context- Returns:
- A list of annotations
-