Package de.bmiag.tapir.util.action
Annotation Type Action
-
@Target(TYPE) @Retention(RUNTIME) @Component @Deprecated public @interface Action
Deprecated.Since 3.1.0, use de.bmiag.tapir.execution.annotations.action.Action insteadClasses annotated withAction
are marked as Spring component and get a new field of the typeTapirAssertions
. The field is autowired by Spring and marked as Xtend extension.
Usage example:@Action class MyClass { }
@Action public class MyClass { @Extension @Autowired private TapirAssertions _tapirAssertions; }
- Since:
- 2.0.0
- Author:
- Oliver Libutzki <[email protected]>