Class CmmnRuntimeServiceImpl
java.lang.Object
org.flowable.common.engine.impl.service.CommonServiceImpl<C>
org.flowable.common.engine.impl.service.CommonEngineServiceImpl<CmmnEngineConfiguration>
org.flowable.cmmn.engine.impl.runtime.CmmnRuntimeServiceImpl
- All Implemented Interfaces:
CmmnRuntimeService
public class CmmnRuntimeServiceImpl
extends CommonEngineServiceImpl<CmmnEngineConfiguration>
implements CmmnRuntimeService
- Author:
- Joram Barrez
-
Field Summary
Fields inherited from class org.flowable.common.engine.impl.service.CommonEngineServiceImpl
commandExecutor
Fields inherited from class org.flowable.common.engine.impl.service.CommonServiceImpl
configuration
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
addEventListener
(FlowableEventListener listenerToAdd) Adds an event-listener which will be notified of ALL events by the dispatcher.void
addEventListener
(FlowableEventListener listenerToAdd, FlowableEngineEventType... types) Adds an event-listener which will only be notified when an event occurs, which type is in the given types.void
addGroupIdentityLink
(String caseInstanceId, String groupId, String identityLinkType) Involves a group with a case instance.void
addUserIdentityLink
(String caseInstanceId, String userId, String identityLinkType) Involves a user with a case instance.void
bulkDeleteCaseInstances
(Collection<String> caseInstanceIds) void
bulkTerminateCaseInstances
(Collection<String> caseInstanceIds) void
changePlanItemState
(ChangePlanItemStateBuilderImpl changePlanItemStateBuilder) void
completeCaseInstance
(String caseInstanceId) void
completeGenericEventListenerInstance
(String genericEventListenerInstanceId) void
completeStagePlanItemInstance
(String planItemInstanceId) void
completeStagePlanItemInstance
(String planItemInstanceId, boolean force) void
completeUserEventListenerInstance
(String userEventListenerInstanceId) Creates a new event subscription builder to register a subscription to start a new case instance based on an event with a particular set of correlation parameter values.Creates a new event subscription deletion builder to delete one or more previously registered case start event subscriptions based on a particular case definition and with an optional combination of correlation parameter values.Creates a new event subscription modification builder to modify one or more previously registered case start event subscriptions based on a particular case definition and with an optional combination of correlation parameter values.Create aChangePlanItemStateBuilder
, that allows to set various options for changing the state of a case instance.Creates a newEventSubscriptionQuery
instance, that can be used to query the event subscriptions.createPlanItemInstanceTransitionBuilder
(String planItemInstanceId) void
deleteCaseInstance
(String caseInstanceId) void
deleteCaseInstanceStartEventSubscriptions
(CaseInstanceStartEventSubscriptionDeletionBuilderImpl builder) void
deleteGroupIdentityLink
(String caseInstanceId, String groupId, String identityLinkType) Removes the association between a group and a case instance for the given identityLinkType.void
deleteUserIdentityLink
(String caseInstanceId, String userId, String identityLinkType) Removes the association between a user and a case instance for the given identityLinkType.void
disablePlanItemInstance
(String planItemInstanceId) void
dispatchEvent
(FlowableEvent event) Dispatches the given event to any listeners that are registered.void
enablePlanItemInstance
(String planItemInstanceId) void
evaluateCriteria
(String caseInstanceId) getEntityLinkChildrenForCaseInstance
(String caseInstanceId) Retrieves theEntityLink
s associated with the given case instance.Retrieves all theEntityLink
s associated with the same root as the given case instance.getEntityLinkParentsForCaseInstance
(String caseInstanceId) Retrieves theEntityLink
s where the given case instance is referenced.getIdentityLinksForCaseInstance
(String caseInstanceId) Retrieves theIdentityLink
s associated with the given case instance.getIdentityLinksForPlanItemInstance
(String planItemInstanceId) Retrieves theIdentityLink
s associated with the given plan item instance.getLocalVariable
(String planItemInstanceId, String variableName) The local variable value.getLocalVariableInstance
(String planItemInstanceId, String variableName) The local variable.getLocalVariableInstances
(String planItemInstanceId) All variable values that are defined in the plan item instance scope, without taking outer scopes into account.getLocalVariables
(String planItemInstanceId) All variable values that are defined in the plan item instance scope, without taking outer scopes into account.getLocalVariables
(String planItemInstanceId, Collection<String> variableNames) All variable values for all given variableNames that are defined in the plan item instance scope, without taking outer scopes into account.getStageOverview
(String caseInstanceId) Gives back a stage overview of the case instance which includes the stage information of the case model.getStartFormModel
(String caseDefinitionId, String caseInstanceId) Gets a Form model instance of the start form of a specific case definition or case instancegetVariable
(String caseInstanceId, String variableName) The variable value.getVariableInstance
(String caseInstanceId, String variableName) The variable.getVariableInstances
(String caseInstanceId) All variables visible from the given case instance scope.getVariables
(String caseInstanceId) All variables visible from the given case instance scope.getVariables
(String caseInstanceId, Collection<String> variableNames) The variable values for all given variableNames.boolean
hasLocalVariable
(String planItemInstanceId, String variableName) Check whether or not this plan item instance has local variable set with the given name.boolean
hasVariable
(String caseInstanceId, String variableName) Check whether or not this case instance has variable set with the given name, Searching for the variable is done in all scopes that are visible to the given case instance.void
migrateCaseInstanceStartEventSubscriptionsToCaseDefinitionVersion
(CaseInstanceStartEventSubscriptionModificationBuilderImpl builder) void
removeAssignee
(String caseInstanceId) Removes the assignee of a case instance.void
removeEventListener
(FlowableEventListener listenerToRemove) Removes the given listener from this dispatcher.void
removeLocalVariable
(String planItemInstanceId, String variableName) void
removeLocalVariables
(String planItemInstanceId, Collection<String> variableNames) void
removeOwner
(String caseInstanceId) Removes the owner of a case instance.void
removeVariable
(String caseInstanceId, String variableName) void
removeVariables
(String caseInstanceId, Collection<String> variableNames) void
setAssignee
(String caseInstanceId, String userId) Set the new assignee of a case instance.void
setCaseInstanceName
(String caseInstanceId, String caseName) Set or change the name of the case instance.void
setLocalVariable
(String planItemInstanceId, String variableName, Object variableValue) void
setLocalVariables
(String planItemInstanceId, Map<String, Object> variables) void
Set the new owner of a case instance.void
setVariable
(String caseInstanceId, String variableName, Object variableValue) void
setVariables
(String caseInstanceId, Map<String, Object> variables) startCaseInstance
(CaseInstanceBuilder caseInstanceBuilder) startCaseInstanceAsync
(CaseInstanceBuilder caseInstanceBuilder) void
startPlanItemInstance
(String planItemInstanceId) void
terminateCaseInstance
(String caseInstanceId) void
terminatePlanItemInstance
(String planItemInstanceId) void
triggerPlanItemInstance
(String planItemInstanceId) void
updateBusinessKey
(String caseInstanceId, String businessKey) Updates the business key for the provided case instancevoid
updateBusinessStatus
(String caseInstanceId, String businessStatus) Updates the business status for the provided case instanceMethods inherited from class org.flowable.common.engine.impl.service.CommonEngineServiceImpl
getCommandExecutor, setCommandExecutor
Methods inherited from class org.flowable.common.engine.impl.service.CommonServiceImpl
getConfiguration
-
Constructor Details
-
CmmnRuntimeServiceImpl
-
-
Method Details
-
createCaseInstanceBuilder
- Specified by:
createCaseInstanceBuilder
in interfaceCmmnRuntimeService
-
createPlanItemInstanceTransitionBuilder
public PlanItemInstanceTransitionBuilder createPlanItemInstanceTransitionBuilder(String planItemInstanceId) - Specified by:
createPlanItemInstanceTransitionBuilder
in interfaceCmmnRuntimeService
-
startCaseInstance
-
startCaseInstanceAsync
-
getStartFormModel
Description copied from interface:CmmnRuntimeService
Gets a Form model instance of the start form of a specific case definition or case instance- Specified by:
getStartFormModel
in interfaceCmmnRuntimeService
- Parameters:
caseDefinitionId
- id of case definition for which the start form should be retrieved.caseInstanceId
- id of case instance for which the start form should be retrieved.
-
triggerPlanItemInstance
- Specified by:
triggerPlanItemInstance
in interfaceCmmnRuntimeService
-
enablePlanItemInstance
- Specified by:
enablePlanItemInstance
in interfaceCmmnRuntimeService
-
disablePlanItemInstance
- Specified by:
disablePlanItemInstance
in interfaceCmmnRuntimeService
-
completeStagePlanItemInstance
- Specified by:
completeStagePlanItemInstance
in interfaceCmmnRuntimeService
-
completeStagePlanItemInstance
- Specified by:
completeStagePlanItemInstance
in interfaceCmmnRuntimeService
-
startPlanItemInstance
- Specified by:
startPlanItemInstance
in interfaceCmmnRuntimeService
-
completeCaseInstance
- Specified by:
completeCaseInstance
in interfaceCmmnRuntimeService
-
terminateCaseInstance
- Specified by:
terminateCaseInstance
in interfaceCmmnRuntimeService
-
bulkTerminateCaseInstances
- Specified by:
bulkTerminateCaseInstances
in interfaceCmmnRuntimeService
-
terminatePlanItemInstance
- Specified by:
terminatePlanItemInstance
in interfaceCmmnRuntimeService
-
deleteCaseInstance
- Specified by:
deleteCaseInstance
in interfaceCmmnRuntimeService
-
bulkDeleteCaseInstances
- Specified by:
bulkDeleteCaseInstances
in interfaceCmmnRuntimeService
-
evaluateCriteria
- Specified by:
evaluateCriteria
in interfaceCmmnRuntimeService
-
completeGenericEventListenerInstance
- Specified by:
completeGenericEventListenerInstance
in interfaceCmmnRuntimeService
-
completeUserEventListenerInstance
- Specified by:
completeUserEventListenerInstance
in interfaceCmmnRuntimeService
-
getVariables
Description copied from interface:CmmnRuntimeService
All variables visible from the given case instance scope.- Specified by:
getVariables
in interfaceCmmnRuntimeService
- Parameters:
caseInstanceId
- id of case instance, cannot be null.- Returns:
- the variables or an empty map if no such variables are found.
-
getVariables
Description copied from interface:CmmnRuntimeService
The variable values for all given variableNames.- Specified by:
getVariables
in interfaceCmmnRuntimeService
- Parameters:
caseInstanceId
- id of execution, cannot be null.variableNames
- the collection of variable names that should be retrieved.- Returns:
- the variables or an empty map if no such variables are found.
-
getVariableInstances
Description copied from interface:CmmnRuntimeService
All variables visible from the given case instance scope.- Specified by:
getVariableInstances
in interfaceCmmnRuntimeService
- Parameters:
caseInstanceId
- id of case instance, cannot be null.- Returns:
- the variable instances or an empty map if no such variables are found.
-
getLocalVariables
Description copied from interface:CmmnRuntimeService
All variable values that are defined in the plan item instance scope, without taking outer scopes into account.- Specified by:
getLocalVariables
in interfaceCmmnRuntimeService
- Parameters:
planItemInstanceId
- id of plan item instance, cannot be null.- Returns:
- the variables or an empty map if no such variables are found.
-
getLocalVariables
public Map<String,Object> getLocalVariables(String planItemInstanceId, Collection<String> variableNames) Description copied from interface:CmmnRuntimeService
All variable values for all given variableNames that are defined in the plan item instance scope, without taking outer scopes into account.- Specified by:
getLocalVariables
in interfaceCmmnRuntimeService
- Parameters:
planItemInstanceId
- id of plan item instance, cannot be null.variableNames
- the collection of variable names that should be retrieved.- Returns:
- the variables or an empty map if no such variables are found.
-
getLocalVariableInstances
Description copied from interface:CmmnRuntimeService
All variable values that are defined in the plan item instance scope, without taking outer scopes into account.- Specified by:
getLocalVariableInstances
in interfaceCmmnRuntimeService
- Parameters:
planItemInstanceId
- id of plan item instance, cannot be null.- Returns:
- the variables or an empty map if no such variables are found.
-
getVariable
Description copied from interface:CmmnRuntimeService
The variable value. Returns null when no variable value is found with the given name or when the value is set to null.- Specified by:
getVariable
in interfaceCmmnRuntimeService
- Parameters:
caseInstanceId
- id of case instance, cannot be null.variableName
- name of variable, cannot be null.- Returns:
- the variable value or null if the variable is undefined or the value of the variable is null.
-
getVariableInstance
Description copied from interface:CmmnRuntimeService
The variable. Returns null when no variable value is found with the given name or when the value is set to null.- Specified by:
getVariableInstance
in interfaceCmmnRuntimeService
- Parameters:
caseInstanceId
- id of case instance, cannot be null.variableName
- name of variable, cannot be null.- Returns:
- the variable or null if the variable is undefined.
-
getLocalVariable
Description copied from interface:CmmnRuntimeService
The local variable value. Returns null when no variable value is found with the given name or when the value is set to null.- Specified by:
getLocalVariable
in interfaceCmmnRuntimeService
- Parameters:
planItemInstanceId
- id of plan item instance, cannot be null.variableName
- name of variable, cannot be null.- Returns:
- the variable value or null if the variable is undefined or the value of the variable is null.
-
getLocalVariableInstance
Description copied from interface:CmmnRuntimeService
The local variable. Returns null when no variable value is found with the given name or when the value is set to null.- Specified by:
getLocalVariableInstance
in interfaceCmmnRuntimeService
- Parameters:
planItemInstanceId
- id of plan item instance, cannot be null.variableName
- name of variable, cannot be null.- Returns:
- the variable or null if the variable is undefined.
-
hasVariable
Description copied from interface:CmmnRuntimeService
Check whether or not this case instance has variable set with the given name, Searching for the variable is done in all scopes that are visible to the given case instance.- Specified by:
hasVariable
in interfaceCmmnRuntimeService
-
hasLocalVariable
Description copied from interface:CmmnRuntimeService
Check whether or not this plan item instance has local variable set with the given name.- Specified by:
hasLocalVariable
in interfaceCmmnRuntimeService
-
setVariable
- Specified by:
setVariable
in interfaceCmmnRuntimeService
-
setVariables
- Specified by:
setVariables
in interfaceCmmnRuntimeService
-
setLocalVariable
- Specified by:
setLocalVariable
in interfaceCmmnRuntimeService
-
setLocalVariables
- Specified by:
setLocalVariables
in interfaceCmmnRuntimeService
-
removeVariable
- Specified by:
removeVariable
in interfaceCmmnRuntimeService
-
removeVariables
- Specified by:
removeVariables
in interfaceCmmnRuntimeService
-
removeLocalVariable
- Specified by:
removeLocalVariable
in interfaceCmmnRuntimeService
-
removeLocalVariables
- Specified by:
removeLocalVariables
in interfaceCmmnRuntimeService
-
createVariableInstanceQuery
- Specified by:
createVariableInstanceQuery
in interfaceCmmnRuntimeService
-
setCaseInstanceName
Description copied from interface:CmmnRuntimeService
Set or change the name of the case instance.- Specified by:
setCaseInstanceName
in interfaceCmmnRuntimeService
- Parameters:
caseInstanceId
- the id of the case to set the namecaseName
- the name to be set on the case
-
createCaseInstanceQuery
- Specified by:
createCaseInstanceQuery
in interfaceCmmnRuntimeService
-
createPlanItemInstanceQuery
- Specified by:
createPlanItemInstanceQuery
in interfaceCmmnRuntimeService
-
createMilestoneInstanceQuery
- Specified by:
createMilestoneInstanceQuery
in interfaceCmmnRuntimeService
-
createGenericEventListenerInstanceQuery
- Specified by:
createGenericEventListenerInstanceQuery
in interfaceCmmnRuntimeService
-
createSignalEventListenerInstanceQuery
- Specified by:
createSignalEventListenerInstanceQuery
in interfaceCmmnRuntimeService
-
createUserEventListenerInstanceQuery
- Specified by:
createUserEventListenerInstanceQuery
in interfaceCmmnRuntimeService
-
createEventSubscriptionQuery
Description copied from interface:CmmnRuntimeService
Creates a newEventSubscriptionQuery
instance, that can be used to query the event subscriptions.- Specified by:
createEventSubscriptionQuery
in interfaceCmmnRuntimeService
-
getStageOverview
Description copied from interface:CmmnRuntimeService
Gives back a stage overview of the case instance which includes the stage information of the case model.- Specified by:
getStageOverview
in interfaceCmmnRuntimeService
- Parameters:
caseInstanceId
- id of the case instance, cannot be null.- Returns:
- list of stage info objects
-
setOwner
Description copied from interface:CmmnRuntimeService
Set the new owner of a case instance.- Specified by:
setOwner
in interfaceCmmnRuntimeService
- Parameters:
caseInstanceId
- the id of the case to set its new owneruserId
- the id of the user to set as the new owner
-
removeOwner
Description copied from interface:CmmnRuntimeService
Removes the owner of a case instance.- Specified by:
removeOwner
in interfaceCmmnRuntimeService
- Parameters:
caseInstanceId
- the id of the case to remove the owner from
-
setAssignee
Description copied from interface:CmmnRuntimeService
Set the new assignee of a case instance.- Specified by:
setAssignee
in interfaceCmmnRuntimeService
- Parameters:
caseInstanceId
- the id of the case to set its new assigneeuserId
- the id of the user to set as the new assignee
-
removeAssignee
Description copied from interface:CmmnRuntimeService
Removes the assignee of a case instance.- Specified by:
removeAssignee
in interfaceCmmnRuntimeService
- Parameters:
caseInstanceId
- the id of the case to remove the assignee from
-
addUserIdentityLink
Description copied from interface:CmmnRuntimeService
Involves a user with a case instance. The type of identity link is defined by the given identityLinkType.- Specified by:
addUserIdentityLink
in interfaceCmmnRuntimeService
- Parameters:
caseInstanceId
- id of the case instance, cannot be null.userId
- id of the user involve, cannot be null.identityLinkType
- type of identityLink, cannot be null.
-
addGroupIdentityLink
Description copied from interface:CmmnRuntimeService
Involves a group with a case instance. The type of identityLink is defined by the given identityLink.- Specified by:
addGroupIdentityLink
in interfaceCmmnRuntimeService
- Parameters:
caseInstanceId
- id of the case instance, cannot be null.groupId
- id of the group to involve, cannot be null.identityLinkType
- type of identity, cannot be null.
-
deleteUserIdentityLink
Description copied from interface:CmmnRuntimeService
Removes the association between a user and a case instance for the given identityLinkType.- Specified by:
deleteUserIdentityLink
in interfaceCmmnRuntimeService
- Parameters:
caseInstanceId
- id of the case instance, cannot be null.userId
- id of the user involve, cannot be null.identityLinkType
- type of identityLink, cannot be null.
-
deleteGroupIdentityLink
Description copied from interface:CmmnRuntimeService
Removes the association between a group and a case instance for the given identityLinkType.- Specified by:
deleteGroupIdentityLink
in interfaceCmmnRuntimeService
- Parameters:
caseInstanceId
- id of the case instance, cannot be null.groupId
- id of the group to involve, cannot be null.identityLinkType
- type of identity, cannot be null.
-
getIdentityLinksForCaseInstance
Description copied from interface:CmmnRuntimeService
Retrieves theIdentityLink
s associated with the given case instance. Such an identity link informs how a certain user is involved with a case instance.- Specified by:
getIdentityLinksForCaseInstance
in interfaceCmmnRuntimeService
-
getIdentityLinksForPlanItemInstance
Description copied from interface:CmmnRuntimeService
Retrieves theIdentityLink
s associated with the given plan item instance. Such an identity link informs how a certain user is involved with a plan item instance.- Specified by:
getIdentityLinksForPlanItemInstance
in interfaceCmmnRuntimeService
-
getEntityLinkChildrenForCaseInstance
Description copied from interface:CmmnRuntimeService
Retrieves theEntityLink
s associated with the given case instance.- Specified by:
getEntityLinkChildrenForCaseInstance
in interfaceCmmnRuntimeService
-
getEntityLinkChildrenWithSameRootAsCaseInstance
Description copied from interface:CmmnRuntimeService
Retrieves all theEntityLink
s associated with the same root as the given case instance.- Specified by:
getEntityLinkChildrenWithSameRootAsCaseInstance
in interfaceCmmnRuntimeService
-
getEntityLinkParentsForCaseInstance
Description copied from interface:CmmnRuntimeService
Retrieves theEntityLink
s where the given case instance is referenced.- Specified by:
getEntityLinkParentsForCaseInstance
in interfaceCmmnRuntimeService
-
createChangePlanItemStateBuilder
Description copied from interface:CmmnRuntimeService
Create aChangePlanItemStateBuilder
, that allows to set various options for changing the state of a case instance.- Specified by:
createChangePlanItemStateBuilder
in interfaceCmmnRuntimeService
-
updateBusinessKey
Description copied from interface:CmmnRuntimeService
Updates the business key for the provided case instance- Specified by:
updateBusinessKey
in interfaceCmmnRuntimeService
- Parameters:
caseInstanceId
- id of the case instance to set the business key, cannot be nullbusinessKey
- new businessKey value
-
updateBusinessStatus
Description copied from interface:CmmnRuntimeService
Updates the business status for the provided case instance- Specified by:
updateBusinessStatus
in interfaceCmmnRuntimeService
- Parameters:
caseInstanceId
- id of the case instance to set the business status, cannot be nullbusinessStatus
- new business status value
-
changePlanItemState
-
addEventListener
Description copied from interface:CmmnRuntimeService
Adds an event-listener which will be notified of ALL events by the dispatcher.- Specified by:
addEventListener
in interfaceCmmnRuntimeService
- Parameters:
listenerToAdd
- the listener to add
-
addEventListener
Description copied from interface:CmmnRuntimeService
Adds an event-listener which will only be notified when an event occurs, which type is in the given types.- Specified by:
addEventListener
in interfaceCmmnRuntimeService
- Parameters:
listenerToAdd
- the listener to addtypes
- types of events the listener should be notified for
-
removeEventListener
Description copied from interface:CmmnRuntimeService
Removes the given listener from this dispatcher. The listener will no longer be notified, regardless of the type(s) it was registered for in the first place.- Specified by:
removeEventListener
in interfaceCmmnRuntimeService
- Parameters:
listenerToRemove
- listener to remove
-
dispatchEvent
Description copied from interface:CmmnRuntimeService
Dispatches the given event to any listeners that are registered.- Specified by:
dispatchEvent
in interfaceCmmnRuntimeService
- Parameters:
event
- event to dispatch.
-
createCaseInstanceStartEventSubscriptionBuilder
Description copied from interface:CmmnRuntimeService
Creates a new event subscription builder to register a subscription to start a new case instance based on an event with a particular set of correlation parameter values. In order for this to work, the case definition needs to have an event-registry based start event with a dynamic, manual subscription based behavior and the registered correlation parameter values within the builder need to be based on actual correlation parameter definitions within the event model the start event is based on. Register one or more correlation parameter value with in the builder before invoking theCaseInstanceStartEventSubscriptionBuilder.subscribe()
method to create and register the subscription.- Specified by:
createCaseInstanceStartEventSubscriptionBuilder
in interfaceCmmnRuntimeService
- Returns:
- the subscription builder
-
createCaseInstanceStartEventSubscriptionModificationBuilder
public CaseInstanceStartEventSubscriptionModificationBuilder createCaseInstanceStartEventSubscriptionModificationBuilder()Description copied from interface:CmmnRuntimeService
Creates a new event subscription modification builder to modify one or more previously registered case start event subscriptions based on a particular case definition and with an optional combination of correlation parameter values.- Specified by:
createCaseInstanceStartEventSubscriptionModificationBuilder
in interfaceCmmnRuntimeService
- Returns:
- the subscription modification builder
-
createCaseInstanceStartEventSubscriptionDeletionBuilder
public CaseInstanceStartEventSubscriptionDeletionBuilder createCaseInstanceStartEventSubscriptionDeletionBuilder()Description copied from interface:CmmnRuntimeService
Creates a new event subscription deletion builder to delete one or more previously registered case start event subscriptions based on a particular case definition and with an optional combination of correlation parameter values.- Specified by:
createCaseInstanceStartEventSubscriptionDeletionBuilder
in interfaceCmmnRuntimeService
- Returns:
- the subscription deletion builder
-
registerCaseInstanceStartEventSubscription
public EventSubscription registerCaseInstanceStartEventSubscription(CaseInstanceStartEventSubscriptionBuilderImpl builder) -
migrateCaseInstanceStartEventSubscriptionsToCaseDefinitionVersion
public void migrateCaseInstanceStartEventSubscriptionsToCaseDefinitionVersion(CaseInstanceStartEventSubscriptionModificationBuilderImpl builder) -
deleteCaseInstanceStartEventSubscriptions
public void deleteCaseInstanceStartEventSubscriptions(CaseInstanceStartEventSubscriptionDeletionBuilderImpl builder)
-