Annotation Interface FormConfigurationResource


@Target(TYPE) @Retention(RUNTIME) @Documented @Inherited public @interface FormConfigurationResource
An annotation that can be used on test classes or as a meta annotation to use a custom configuration resource for the FlowableFormExtension.

This annotation can be used to create a custom annotation that would provide the configuration resource to the FlowableFormExtension.

Usage

 @Target({ElementType.TYPE})
 @Retention(RetentionPolicy.RUNTIME)
 @Documented
 @ConfigurationResource("flowable.custom.form.cfg.xm")
 public @interface MyCustomResource {

 }

 @ExtendWith(FlowableFormExtension.class)
 @MyCustomResource
 class YourTest {

   @BeforeEach
   void setUp(FormEngine formEngine) {
     ...
   }

   @Test
   void myTest(FormService formService) {
     ...
   }
   ...
 }
 
In this example the configuration flowable.custom.form.cfg.xml will be used to create the FormEngine NB: This only works for the tests with JUnit Jupiter.
Author:
Filip Hrisafov
  • Optional Element Summary

    Optional Elements
    Modifier and Type
    Optional Element
    Description
    The location of the resource that should be used to create the ProcessEngine.
  • Element Details

    • value

      String value
      The location of the resource that should be used to create the ProcessEngine.
      Default:
      "flowable.form.cfg.xml"