Package io.quarkus.arc.processor
Interface StereotypeRegistrar
-
- All Superinterfaces:
BuildExtension
public interface StereotypeRegistrar extends BuildExtension
Makes it possible to turn an annotation into a stereotype without adding aStereotypeannotation to it.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface io.quarkus.arc.processor.BuildExtension
BuildExtension.BuildContext, BuildExtension.Key<T>, BuildExtension.SimpleKey<V>
-
-
Field Summary
-
Fields inherited from interface io.quarkus.arc.processor.BuildExtension
DEFAULT_PRIORITY
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Set<org.jboss.jandex.DotName>getAdditionalStereotypes()Returns a set of annotation types (their names) that should be treated as stereotypes.-
Methods inherited from interface io.quarkus.arc.processor.BuildExtension
getPriority, initialize
-
-
-
-
Method Detail
-
getAdditionalStereotypes
Set<org.jboss.jandex.DotName> getAdditionalStereotypes()
Returns a set of annotation types (their names) that should be treated as stereotypes. To modify (meta-)annotations on these annotations, useAnnotationsTransformer.
-
-