public interface UpdateProcessInstanceSuspensionStateBuilder
Modifier and Type | Method and Description |
---|---|
void |
activate()
Activates the provided process instances.
|
void |
suspend()
Suspends the provided process instances.
|
void activate()
Activates the provided process instances.
If you have a process instance hierarchy, activating one process instance from the hierarchy will not activate other process instances from that hierarchy.
ProcessEngineException
- If no such processDefinition can be found.AuthorizationException
- if the user has none of the following:
ProcessInstancePermissions.SUSPEND
permission on Resources.PROCESS_INSTANCE
ProcessDefinitionPermissions.SUSPEND_INSTANCE
permission on Resources.PROCESS_DEFINITION
Permissions.UPDATE
permission on Resources.PROCESS_INSTANCE
Permissions.UPDATE_INSTANCE
permission on Resources.PROCESS_DEFINITION
BadUserRequestException
- When the affected instances count exceeds the maximum results limit. A maximum results
limit can be specified with the process engine configuration property
queryMaxResultsLimit
(default Integer.MAX_VALUE
).
Please use the batch operation
UpdateProcessInstancesSuspensionStateBuilder.activateAsync()
instead.void suspend()
Suspends the provided process instances. This means that the execution is stopped, so the token state will not change. However, actions that do not change token state, like setting/removing variables, etc. will succeed.
Tasks belonging to the suspended process instance will also be suspended. This means that any actions influencing the tasks' lifecycles will fail, such as
If a process instance is in state suspended, the engine will also not execute jobs (timers, messages) associated with this instance.
If you have a process instance hierarchy, suspending one process instance from the hierarchy will not suspend other process instances from that hierarchy.
ProcessEngineException
- If no such processDefinition can be found.AuthorizationException
- if the user has none of the following:
ProcessInstancePermissions.SUSPEND
permission on Resources.PROCESS_INSTANCE
ProcessDefinitionPermissions.SUSPEND_INSTANCE
permission on Resources.PROCESS_DEFINITION
Permissions.UPDATE
permission on Resources.PROCESS_INSTANCE
Permissions.UPDATE_INSTANCE
permission on Resources.PROCESS_DEFINITION
BadUserRequestException
- When the affected instances count exceeds the maximum results limit. A maximum results
limit can be specified with the process engine configuration property
queryMaxResultsLimit
(default Integer.MAX_VALUE
).
Please see the batch operation
UpdateProcessInstancesSuspensionStateBuilder.suspendAsync()
instead.Copyright © 2022. All rights reserved.