Package org.jdbi.v3.sqlobject
Annotation Type DecoratorOrder
@Retention(RUNTIME)
@Target({TYPE,METHOD})
@Deprecated(since="3.38.0",
forRemoval=true)
public @interface DecoratorOrder
Deprecated, for removal: This API element is subject to removal in a future version.
Determines the order in which SQL method decorators are invoked. If this annotation is absent, the decorator order
is undefined. A
@DecoratorOrder
annotation on a method takes precedence over an annotation on a type.-
Required Element Summary
Required ElementsModifier and TypeRequired ElementDescriptionClass<? extends Annotation>[]
Deprecated, for removal: This API element is subject to removal in a future version.The order that decorator annotations will be applied, from outermost to innermost.
-
Element Details
-
value
Class<? extends Annotation>[] valueDeprecated, for removal: This API element is subject to removal in a future version.The order that decorator annotations will be applied, from outermost to innermost. Decorator order is undefined for any decorating annotation present on the SQL method but not on this annotation.- Returns:
- the annotations in the order you like
-
UseExtensionHandlerCustomizer
to mark annotations andExtensionHandlerCustomizationOrder
instead.