public interface DefinitionService
Modifier and Type | Method and Description |
---|---|
void |
addProcessDefinition(String deploymentId,
String processId,
Object processDescriptor,
org.kie.api.runtime.KieContainer kieContainer) |
ProcessDefinition |
buildProcessDefinition(String deploymentId,
String bpmn2Content,
org.kie.api.runtime.KieContainer kieContainer,
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.
|
Collection<String> |
getJavaClasses(String deploymentId,
String processId)
Returns a list of all referenced java classes defined in the given process.
|
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.
|
Collection<String> |
getRuleSets(String deploymentId,
String processId)
Returns a list of all referenced rules used in the 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 |
ProcessDefinition buildProcessDefinition(String deploymentId, String bpmn2Content, org.kie.api.runtime.KieContainer kieContainer, 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 processedkieContainer
- the KieContainer
instance that contains the deployment project: this should be used when
parsing the BPMN2 in case custom classes or other project resources (processes, rules) are referencedcache
- indicates if the definition service should cache this ProcessDefinition
ProcessDefinition
IllegalArgumentException
- in case build operation cannot be completedvoid addProcessDefinition(String deploymentId, String processId, Object processDescriptor, org.kie.api.runtime.KieContainer kieContainer)
ProcessDefinition getProcessDefinition(String deploymentId, String processId)
ProcessDefinition
.
buildProcessDefinition
methoddeploymentId
- identifier of deployment that process belongs toprocessId
- identifier of the processProcessDefinition
if found otherwise nullCollection<String> getReusableSubProcesses(String deploymentId, String processId)
buildProcessDefinition
methoddeploymentId
- identifier of deployment that process belongs toprocessId
- identifier of the processMap<String,String> getProcessVariables(String deploymentId, String processId)
buildProcessDefinition
methoddeploymentId
- identifier of deployment that process belongs toprocessId
- identifier of the processCollection<String> getJavaClasses(String deploymentId, String processId)
buildProcessDefinition
methoddeploymentId
- identifier of deployment that process belongs toprocessId
- identifier of the processCollection<String> getRuleSets(String deploymentId, String processId)
buildProcessDefinition
methoddeploymentId
- identifier of deployment that process belongs toprocessId
- identifier of the processMap<String,String> getServiceTasks(String deploymentId, String processId)
buildProcessDefinition
methoddeploymentId
- identifier of deployment that process belongs toprocessId
- identifier of the processMap<String,Collection<String>> getAssociatedEntities(String deploymentId, String processId)
buildProcessDefinition
methoddeploymentId
- identifier of deployment that process belongs toprocessId
- identifier of the processCollection<UserTaskDefinition> getTasksDefinitions(String deploymentId, String processId)
buildProcessDefinition
methoddeploymentId
- identifier of deployment that process belongs toprocessId
- identifier of the processUserTaskDefinition
s or empty collection if none were foundMap<String,String> getTaskInputMappings(String deploymentId, String processId, String taskName)
buildProcessDefinition
methoddeploymentId
- identifier of deployment that process belongs toprocessId
- identifier of the processtaskName
- name of a task the data input should be collected forMap<String,String> getTaskOutputMappings(String deploymentId, String processId, String taskName)
buildProcessDefinition
methoddeploymentId
- identifier of deployment that process belongs toprocessId
- identifier of the processtaskName
- name of a task the data output should be collected forCopyright © 2001–2019 JBoss by Red Hat. All rights reserved.