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 instead
    Classes annotated with Action are marked as Spring component and get a new field of the type TapirAssertions. The field is autowired by Spring and marked as Xtend extension.
    Usage example:
     
     @Action
     class MyClass {
     }
     
     
    Leads to:
     
     @Action
     public class MyClass {
       @Extension
       @Autowired
       private TapirAssertions _tapirAssertions;
     }
     
     
    Since:
    2.0.0
    Author:
    Oliver Libutzki <[email protected]>