Annotation Interface EnableProcessApplication
@Target(TYPE)
@Retention(RUNTIME)
@Import(SpringBootProcessApplication.class)
@Documented
@Inherited
public @interface EnableProcessApplication
Annotation that disables the 
SpringProcessEngineConfiguration
 auto-deploy feature and instead uses the required META-INF/processes.xml
 as an indicator for resource scanning. This also allows all processes.xml
 configuration features described here:
 The processes.xml Deployment Descriptor
 
 To use it, just add the annotation to your Spring Boot application class:
 @SpringBootApplication
 @EnableProcessApplication("myProcessApplicationName")
 public class MyApplication {
 
 ...
 
 }
 - 
Optional Element Summary
Optional Elements 
- 
Element Details
- 
value
String value- Default:
 - ""
 
 
 -