Annotation Type UseExtensionHandlerCustomizer
Meta-Annotation used to identify extension method decorating annotations. Use this to annotate an annotation.
- Since:
- 3.38.0
-
Required Element Summary
Modifier and TypeRequired ElementDescriptionClass
<? extends ExtensionHandlerCustomizer> ExtensionHandlerCustomizer
class that decoratesExtensionHandler
instances for methods annotated with the associated annotation.
-
Element Details
-
value
Class<? extends ExtensionHandlerCustomizer> valueExtensionHandlerCustomizer
class that decoratesExtensionHandler
instances for methods annotated with the associated annotation.
The extension customizer must have either a public no-arguments, a(Method method)
, or a(Class<?> extensionType, Method method)
constructor. If the constructor takes one or more arguments, it will get the extension type and the invoked method passed in at construction time.- Returns:
- the
ExtensionHandlerCustomizer
class
-