Package org.flowable.cmmn.api
Interface CmmnRuntimeService
public interface CmmnRuntimeService
- Author:
- Joram Barrez
-
Method Summary
Modifier and TypeMethodDescriptionvoid
addEventListener
(org.flowable.common.engine.api.delegate.event.FlowableEventListener listenerToAdd) Adds an event-listener which will be notified of ALL events by the dispatcher.void
addEventListener
(org.flowable.common.engine.api.delegate.event.FlowableEventListener listenerToAdd, org.flowable.common.engine.api.delegate.event.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> caseInstanceId) void
bulkTerminateCaseInstances
(Collection<String> caseInstanceId) 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.org.flowable.eventsubscription.api.EventSubscriptionQuery
Creates a newEventSubscriptionQuery
instance, that can be used to query the event subscriptions.createPlanItemInstanceTransitionBuilder
(String planItemInstanceId) void
deleteCaseInstance
(String caseInstanceId) 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
(org.flowable.common.engine.api.delegate.event.FlowableEvent event) Dispatches the given event to any listeners that are registered.void
enablePlanItemInstance
(String planItemInstanceId) void
evaluateCriteria
(String caseInstanceId) List<org.flowable.entitylink.api.EntityLink>
getEntityLinkChildrenForCaseInstance
(String instanceId) Retrieves theEntityLink
s associated with the given case instance.List<org.flowable.entitylink.api.EntityLink>
Retrieves all theEntityLink
s associated with the same root as the given case instance.List<org.flowable.entitylink.api.EntityLink>
getEntityLinkParentsForCaseInstance
(String instanceId) Retrieves theEntityLink
s where the given case instance is referenced.List<org.flowable.identitylink.api.IdentityLink>
getIdentityLinksForCaseInstance
(String instanceId) Retrieves theIdentityLink
s associated with the given case instance.List<org.flowable.identitylink.api.IdentityLink>
getIdentityLinksForPlanItemInstance
(String instanceId) Retrieves theIdentityLink
s associated with the given plan item instance.getLocalVariable
(String planItemInstanceId, String variableName) The local variable value.org.flowable.variable.api.persistence.entity.VariableInstance
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.org.flowable.form.api.FormInfo
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.org.flowable.variable.api.persistence.entity.VariableInstance
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
removeAssignee
(String caseInstanceId) Removes the assignee of a case instance.void
removeEventListener
(org.flowable.common.engine.api.delegate.event.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) 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 instance
-
Method Details
-
createCaseInstanceBuilder
CaseInstanceBuilder createCaseInstanceBuilder() -
createPlanItemInstanceTransitionBuilder
PlanItemInstanceTransitionBuilder createPlanItemInstanceTransitionBuilder(String planItemInstanceId) -
triggerPlanItemInstance
-
enablePlanItemInstance
-
startPlanItemInstance
-
disablePlanItemInstance
-
completeStagePlanItemInstance
-
completeStagePlanItemInstance
-
completeCaseInstance
-
terminateCaseInstance
-
bulkTerminateCaseInstances
-
terminatePlanItemInstance
-
deleteCaseInstance
-
bulkDeleteCaseInstances
-
evaluateCriteria
-
completeGenericEventListenerInstance
-
completeUserEventListenerInstance
-
getVariables
All variables visible from the given case instance scope.- Parameters:
caseInstanceId
- id of case instance, cannot be null.- Returns:
- the variables or an empty map if no such variables are found.
- Throws:
org.flowable.common.engine.api.FlowableObjectNotFoundException
- when no case instance is found for the given caseInstanceId.
-
getVariables
The variable values for all given variableNames.- 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.
- Throws:
org.flowable.common.engine.api.FlowableObjectNotFoundException
- when no case instance is found for the given caseInstanceId.
-
getVariableInstances
Map<String,org.flowable.variable.api.persistence.entity.VariableInstance> getVariableInstances(String caseInstanceId) All variables visible from the given case instance scope.- Parameters:
caseInstanceId
- id of case instance, cannot be null.- Returns:
- the variable instances or an empty map if no such variables are found.
- Throws:
org.flowable.common.engine.api.FlowableObjectNotFoundException
- when no case instance is found for the given caseInstanceId.
-
getLocalVariables
All variable values that are defined in the plan item instance scope, without taking outer scopes into account.- Parameters:
planItemInstanceId
- id of plan item instance, cannot be null.- Returns:
- the variables or an empty map if no such variables are found.
- Throws:
org.flowable.common.engine.api.FlowableObjectNotFoundException
- when no plan item instance is found for the given planItemInstanceId.
-
getLocalVariables
All variable values for all given variableNames that are defined in the plan item instance scope, without taking outer scopes into account.- 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.
- Throws:
org.flowable.common.engine.api.FlowableObjectNotFoundException
- when no plan item instance is found for the given planItemInstanceId.
-
getLocalVariableInstances
Map<String,org.flowable.variable.api.persistence.entity.VariableInstance> getLocalVariableInstances(String planItemInstanceId) All variable values that are defined in the plan item instance scope, without taking outer scopes into account.- Parameters:
planItemInstanceId
- id of plan item instance, cannot be null.- Returns:
- the variables or an empty map if no such variables are found.
- Throws:
org.flowable.common.engine.api.FlowableObjectNotFoundException
- when no plan item instance is found for the given planItemInstanceId.
-
getVariable
The variable value. Returns null when no variable value is found with the given name or when the value is set to null.- 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.
- Throws:
org.flowable.common.engine.api.FlowableObjectNotFoundException
- when no case instance is found for the given caseInstanceId.
-
getVariableInstance
org.flowable.variable.api.persistence.entity.VariableInstance getVariableInstance(String caseInstanceId, String variableName) The variable. Returns null when no variable value is found with the given name or when the value is set to null.- 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.
- Throws:
org.flowable.common.engine.api.FlowableObjectNotFoundException
- when no case instance is found for the given caseInstanceId.
-
getLocalVariable
The local variable value. Returns null when no variable value is found with the given name or when the value is set to null.- 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.
- Throws:
org.flowable.common.engine.api.FlowableObjectNotFoundException
- when no plan item instance is found for the given planItemInstanceId.
-
getLocalVariableInstance
org.flowable.variable.api.persistence.entity.VariableInstance getLocalVariableInstance(String planItemInstanceId, String variableName) The local variable. Returns null when no variable value is found with the given name or when the value is set to null.- 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.
- Throws:
org.flowable.common.engine.api.FlowableObjectNotFoundException
- when no plan item instance is found for the given planItemInstanceId.
-
hasVariable
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. -
hasLocalVariable
Check whether or not this plan item instance has local variable set with the given name. -
setVariables
-
setVariable
-
setLocalVariables
-
setLocalVariable
-
removeVariable
-
removeVariables
-
removeLocalVariable
-
removeLocalVariables
-
createVariableInstanceQuery
VariableInstanceQuery createVariableInstanceQuery() -
setCaseInstanceName
Set or change the name of the case instance.- Parameters:
caseInstanceId
- the id of the case to set the namecaseName
- the name to be set on the case
-
createCaseInstanceQuery
CaseInstanceQuery createCaseInstanceQuery() -
createPlanItemInstanceQuery
PlanItemInstanceQuery createPlanItemInstanceQuery() -
createMilestoneInstanceQuery
MilestoneInstanceQuery createMilestoneInstanceQuery() -
createGenericEventListenerInstanceQuery
GenericEventListenerInstanceQuery createGenericEventListenerInstanceQuery() -
createSignalEventListenerInstanceQuery
SignalEventListenerInstanceQuery createSignalEventListenerInstanceQuery() -
createUserEventListenerInstanceQuery
UserEventListenerInstanceQuery createUserEventListenerInstanceQuery() -
createEventSubscriptionQuery
org.flowable.eventsubscription.api.EventSubscriptionQuery createEventSubscriptionQuery()Creates a newEventSubscriptionQuery
instance, that can be used to query the event subscriptions. -
getStageOverview
Gives back a stage overview of the case instance which includes the stage information of the case model.- Parameters:
caseInstanceId
- id of the case instance, cannot be null.- Returns:
- list of stage info objects
- Throws:
org.flowable.common.engine.api.FlowableObjectNotFoundException
- when the case instance doesn't exist.
-
setOwner
Set the new owner of a case instance.- Parameters:
caseInstanceId
- the id of the case to set its new owneruserId
- the id of the user to set as the new owner
-
removeOwner
Removes the owner of a case instance.- Parameters:
caseInstanceId
- the id of the case to remove the owner from
-
setAssignee
Set the new assignee of a case instance.- Parameters:
caseInstanceId
- the id of the case to set its new assigneeuserId
- the id of the user to set as the new assignee
-
removeAssignee
Removes the assignee of a case instance.- Parameters:
caseInstanceId
- the id of the case to remove the assignee from
-
addUserIdentityLink
Involves a user with a case instance. The type of identity link is defined by the given identityLinkType.- 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.- Throws:
org.flowable.common.engine.api.FlowableObjectNotFoundException
- when the case instance doesn't exist.
-
addGroupIdentityLink
Involves a group with a case instance. The type of identityLink is defined by the given identityLink.- 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.- Throws:
org.flowable.common.engine.api.FlowableObjectNotFoundException
- when the case instance or group doesn't exist.
-
deleteUserIdentityLink
Removes the association between a user and a case instance for the given identityLinkType.- 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.- Throws:
org.flowable.common.engine.api.FlowableObjectNotFoundException
- when the task or user doesn't exist.
-
deleteGroupIdentityLink
Removes the association between a group and a case instance for the given identityLinkType.- 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.- Throws:
org.flowable.common.engine.api.FlowableObjectNotFoundException
- when the task or group doesn't exist.
-
getIdentityLinksForCaseInstance
Retrieves theIdentityLink
s associated with the given case instance. Such an identity link informs how a certain user is involved with a case instance. -
getIdentityLinksForPlanItemInstance
List<org.flowable.identitylink.api.IdentityLink> getIdentityLinksForPlanItemInstance(String instanceId) 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. -
getEntityLinkChildrenForCaseInstance
List<org.flowable.entitylink.api.EntityLink> getEntityLinkChildrenForCaseInstance(String instanceId) Retrieves theEntityLink
s associated with the given case instance. -
getEntityLinkChildrenWithSameRootAsCaseInstance
List<org.flowable.entitylink.api.EntityLink> getEntityLinkChildrenWithSameRootAsCaseInstance(String instanceId) Retrieves all theEntityLink
s associated with the same root as the given case instance. -
getEntityLinkParentsForCaseInstance
Retrieves theEntityLink
s where the given case instance is referenced. -
getStartFormModel
Gets a Form model instance of the start form of a specific case definition or case instance- 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.
-
createChangePlanItemStateBuilder
ChangePlanItemStateBuilder createChangePlanItemStateBuilder()Create aChangePlanItemStateBuilder
, that allows to set various options for changing the state of a case instance. -
updateBusinessKey
Updates the business key for the provided case instance- Parameters:
caseInstanceId
- id of the case instance to set the business key, cannot be nullbusinessKey
- new businessKey value
-
updateBusinessStatus
Updates the business status for the provided case instance- Parameters:
caseInstanceId
- id of the case instance to set the business status, cannot be nullbusinessStatus
- new business status value
-
addEventListener
void addEventListener(org.flowable.common.engine.api.delegate.event.FlowableEventListener listenerToAdd) Adds an event-listener which will be notified of ALL events by the dispatcher.- Parameters:
listenerToAdd
- the listener to add
-
addEventListener
void addEventListener(org.flowable.common.engine.api.delegate.event.FlowableEventListener listenerToAdd, org.flowable.common.engine.api.delegate.event.FlowableEngineEventType... types) Adds an event-listener which will only be notified when an event occurs, which type is in the given types.- Parameters:
listenerToAdd
- the listener to addtypes
- types of events the listener should be notified for
-
removeEventListener
void removeEventListener(org.flowable.common.engine.api.delegate.event.FlowableEventListener listenerToRemove) 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.- Parameters:
listenerToRemove
- listener to remove
-
dispatchEvent
void dispatchEvent(org.flowable.common.engine.api.delegate.event.FlowableEvent event) Dispatches the given event to any listeners that are registered.- Parameters:
event
- event to dispatch.- Throws:
org.flowable.common.engine.api.FlowableException
- if an exception occurs when dispatching the event or when theFlowableEventDispatcher
is disabled.org.flowable.common.engine.api.FlowableIllegalArgumentException
- when the given event is not suitable for dispatching.
-
createCaseInstanceStartEventSubscriptionBuilder
CaseInstanceStartEventSubscriptionBuilder createCaseInstanceStartEventSubscriptionBuilder()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.- Returns:
- the subscription builder
-
createCaseInstanceStartEventSubscriptionModificationBuilder
CaseInstanceStartEventSubscriptionModificationBuilder createCaseInstanceStartEventSubscriptionModificationBuilder()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.- Returns:
- the subscription modification builder
-
createCaseInstanceStartEventSubscriptionDeletionBuilder
CaseInstanceStartEventSubscriptionDeletionBuilder createCaseInstanceStartEventSubscriptionDeletionBuilder()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.- Returns:
- the subscription deletion builder
-