|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface ProcessInstanceModificationBuilder
A fluent builder to specify a modification of process instance state in terms of cancellation of activity instances and instantiations of activities and sequence flows. Allows to specify an ordered set of instructions that are all executed within one transaction. Individual instructions are executed in the order of their specification.
| Method Summary | |
|---|---|
ProcessInstanceModificationBuilder |
cancelActivityInstance(String activityInstanceId)
Submits the instruction: |
ProcessInstanceModificationBuilder |
cancelAllForActivity(String activityId)
Submits the instruction: |
ProcessInstanceModificationBuilder |
cancelTransitionInstance(String transitionInstanceId)
Submits the instruction: |
void |
execute()
Execute all instructions. |
void |
execute(boolean skipCustomListeners,
boolean skipIoMappings)
|
ProcessInstanceActivityInstantiationBuilder |
startAfterActivity(String activityId)
Submits an instruction that behaves like startTransition(String) and always instantiates
the single outgoing sequence flow of the given activity. |
ProcessInstanceActivityInstantiationBuilder |
startAfterActivity(String activityId,
String ancestorActivityInstanceId)
Submits an instruction that behaves like startTransition(String,String) and always instantiates
the single outgoing sequence flow of the given activity. |
ProcessInstanceActivityInstantiationBuilder |
startBeforeActivity(String activityId)
Submits the instruction: |
ProcessInstanceActivityInstantiationBuilder |
startBeforeActivity(String activityId,
String ancestorActivityInstanceId)
Submits the instruction: |
ProcessInstanceActivityInstantiationBuilder |
startTransition(String transitionId)
Submits the instruction: |
ProcessInstanceActivityInstantiationBuilder |
startTransition(String transitionId,
String ancestorActivityInstanceId)
Submits the instruction: |
| Method Detail |
|---|
ProcessInstanceModificationBuilder cancelActivityInstance(String activityInstanceId)
Submits the instruction:
Cancel an activity instance in a process. If this instance has child activity instances (e.g. in a subprocess instance), these children, their grandchildren, etc. are cancelled as well.
activityInstanceId - the id of the activity instance to cancelProcessInstanceModificationBuilder cancelTransitionInstance(String transitionInstanceId)
Submits the instruction:
Cancel a transition instance (i.e. an async continuation) in a process.
transitionInstanceId - the id of the transition instance to cancelProcessInstanceModificationBuilder cancelAllForActivity(String activityId)
Submits the instruction:
Cancel all instances of the given activity in an arbitrary order, which are:
Therefore behaves like cancelActivityInstance(String) for each individual
activity instance and like cancelTransitionInstance(String) for each
individual transition instance.
The cancellation order of the instances is arbitrary
activityId - the activity for which all instances should be cancelledProcessInstanceActivityInstantiationBuilder startBeforeActivity(String activityId)
Submits the instruction:
Start before the specified activity.
In particular:
activityId - the activity to instantiate
ProcessEngineException - if more than one possible ancestor activity instance exists
ProcessInstanceActivityInstantiationBuilder startBeforeActivity(String activityId,
String ancestorActivityInstanceId)
Submits the instruction:
Start before the specified activity. Instantiate the given activity as a descendant of the given ancestor activity instance.
In particular:
activityId - the activity to instantiateancestorActivityInstanceId - the ID of an existing activity instance under which the new
activity instance should be createdProcessInstanceActivityInstantiationBuilder startAfterActivity(String activityId)
startTransition(String) and always instantiates
the single outgoing sequence flow of the given activity. Does not consider asyncAfter.
activityId - the activity for which the outgoing flow should be executed
ProcessEngineException - if the activity has 0 or more than 1 outgoing sequence flows
ProcessInstanceActivityInstantiationBuilder startAfterActivity(String activityId,
String ancestorActivityInstanceId)
startTransition(String,String) and always instantiates
the single outgoing sequence flow of the given activity. Does not consider asyncAfter.
activityId - the activity for which the outgoing flow should be executed
ProcessEngineException - if the activity has 0 or more than 1 outgoing sequence flowsProcessInstanceActivityInstantiationBuilder startTransition(String transitionId)
Submits the instruction:
Start a sequence flow.
In particular:
transitionId - the sequence flow to execute
ProcessEngineException - if more than one possible ancestor activity instance exists
ProcessInstanceActivityInstantiationBuilder startTransition(String transitionId,
String ancestorActivityInstanceId)
Submits the instruction:
Start the specified sequence flow. Instantiate the given sequence flow as a descendant of the given ancestor activity instance.
In particular:
transitionId - the sequence flow to executeancestorActivityInstanceId - the ID of an existing activity instance under which the new
transition should be executedvoid execute()
AuthorizationException - if the user has no Permissions.UPDATE permission on Resources.PROCESS_INSTANCE
or no Permissions.UPDATE_INSTANCE permission on Resources.PROCESS_DEFINITION.
if the process instance will be delete and the user has no Permissions.DELETE permission
on Resources.PROCESS_INSTANCE or no Permissions.DELETE_INSTANCE permission on
Resources.PROCESS_DEFINITION.
void execute(boolean skipCustomListeners,
boolean skipIoMappings)
skipCustomListeners - specifies whether custom listeners (task and execution)
should be invoked when executing the instructionsskipIoMappings - specifies whether input/output mappings for tasks should be invoked
throughout the transaction when executing the instructions
AuthorizationException - if the user has no Permissions.UPDATE permission on Resources.PROCESS_INSTANCE
or no Permissions.UPDATE_INSTANCE permission on Resources.PROCESS_DEFINITION.
if the process instance will be delete and the user has no Permissions.DELETE permission
on Resources.PROCESS_INSTANCE or no Permissions.DELETE_INSTANCE permission on
Resources.PROCESS_DEFINITION.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||