|
jBPM distribution 6.2.0.Beta2 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface DefinitionService
Provides details from definition point of view which is extracted from BPMN2 definitions. Delivers information about:
Method Summary | |
---|---|
ProcessDefinition |
buildProcessDefinition(String deploymentId,
String bpmn2Content,
ClassLoader classLoader,
boolean cache)
Performs build operation for given bpmn2content to produce fully populated ProcessDefinition |
Map<String,Collection<String>> |
getAssociatedEntities(String deploymentId,
String processId)
Returns all organizational entities identifiers involved in the process - like users and groups. |
ProcessDefinition |
getProcessDefinition(String deploymentId,
String processId)
Returns previously built ProcessDefinition . |
Map<String,String> |
getProcessVariables(String deploymentId,
String processId)
Returns all process variables defined in the given process where: key in the map is name of the process variable value in the map is type of the process variable NOTE: This method assumes process has already been built by invoking buildProcessDefinition method |
Collection<String> |
getReusableSubProcesses(String deploymentId,
String processId)
Returns collection of process identifiers of reusable processes used by given process. |
Map<String,String> |
getServiceTasks(String deploymentId,
String processId)
Returns service (domain specific) tasks defined in the process where: key in the map is name of the task node value in the map is name of the domain specific service (name that handler should be registered with) NOTE: This method assumes process has already been built by invoking buildProcessDefinition method |
Map<String,String> |
getTaskInputMappings(String deploymentId,
String processId,
String taskName)
Returns map of data input defined for given user task key in the map is identifier of dataInput value in the map is name dataInput NOTE: This method assumes process has already been built by invoking buildProcessDefinition method |
Map<String,String> |
getTaskOutputMappings(String deploymentId,
String processId,
String taskName)
Returns map of data output defined for given user task key in the map is identifier of dataOutput value in the map is name dataOutput NOTE: This method assumes process has already been built by invoking buildProcessDefinition method |
Collection<UserTaskDefinition> |
getTasksDefinitions(String deploymentId,
String processId)
Returns all user task definitions defined in given process NOTE: This method assumes process has already been built by invoking buildProcessDefinition method |
Method Detail |
---|
ProcessDefinition buildProcessDefinition(String deploymentId, String bpmn2Content, ClassLoader classLoader, boolean cache) throws IllegalArgumentException
ProcessDefinition
deploymentId
- identifier of deployment this process belongs to,
might be null if built definition does not need to be storedbpmn2Content
- actual BPMN xml content as string to be parsed and processedclassLoader
- class loader that should be used while parsing the BPMN2 in case custom classes are referencedcache
- indicates if the definition service should cache this ProcessDefinition
ProcessDefinition
IllegalArgumentException
- in case build operation cannot be completedProcessDefinition getProcessDefinition(String deploymentId, String processId)
ProcessDefinition
.
buildProcessDefinition
method
deploymentId
- identifier of deployment that process belongs toprocessId
- identifier of the process
ProcessDefinition
if found otherwise nullCollection<String> getReusableSubProcesses(String deploymentId, String processId)
buildProcessDefinition
method
deploymentId
- identifier of deployment that process belongs toprocessId
- identifier of the process
Map<String,String> getProcessVariables(String deploymentId, String processId)
buildProcessDefinition
method
deploymentId
- identifier of deployment that process belongs toprocessId
- identifier of the process
Map<String,String> getServiceTasks(String deploymentId, String processId)
buildProcessDefinition
method
deploymentId
- identifier of deployment that process belongs toprocessId
- identifier of the process
Map<String,Collection<String>> getAssociatedEntities(String deploymentId, String processId)
buildProcessDefinition
method
deploymentId
- identifier of deployment that process belongs toprocessId
- identifier of the process
Collection<UserTaskDefinition> getTasksDefinitions(String deploymentId, String processId)
buildProcessDefinition
method
deploymentId
- identifier of deployment that process belongs toprocessId
- identifier of the process
UserTaskDefinition
s or empty collection if none were foundMap<String,String> getTaskInputMappings(String deploymentId, String processId, String taskName)
buildProcessDefinition
method
deploymentId
- identifier of deployment that process belongs toprocessId
- identifier of the processtaskName
- name of a task the data input should be collected for
Map<String,String> getTaskOutputMappings(String deploymentId, String processId, String taskName)
buildProcessDefinition
method
deploymentId
- identifier of deployment that process belongs toprocessId
- identifier of the processtaskName
- name of a task the data output should be collected for
|
jBPM distribution 6.2.0.Beta2 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |