Package org.camunda.bpm.application
Annotation Interface ProcessApplication
Used to annotate a user-provided
AbstractProcessApplication
class and specify
the unique name of the process application.- Author:
- Daniel Meyer
-
Optional Element Summary
-
Field Summary
-
Field Details
-
DEFAULT_META_INF_PROCESSES_XML
- See Also:
-
-
Element Details
-
value
String valueAllows specifying the name of the process application. Overrides thename
property.- Default:
- ""
-
name
String nameAllows specifying the name of the process application. Only applies if thevalue
property is not set.- Default:
- ""
-
deploymentDescriptors
String[] deploymentDescriptorsReturns the location(s) of theprocesses.xml
deployment descriptors. The default value is{META-INF/processes.xml}
. The provided path(s) must be resolvable through theClassLoader.getResourceAsStream(String)
-Method of the classloader returned by theAbstractProcessApplication.getProcessApplicationClassloader()
method provided by the process application.- Returns:
- the location of the
processes.xml
file.
- Default:
- {"META-INF/processes.xml"}
-