Package org.flowable.engine
Interface RepositoryService
- All Known Implementing Classes:
- RepositoryServiceImpl
public interface RepositoryService
Service providing access to the repository of process definitions and deployments.
- Author:
- Tom Baeyens, Falko Menge, Tijs Rademakers, Joram Barrez, Henry Yan, Yvo Swillens
- 
Method SummaryModifier and TypeMethodDescriptionvoidactivateProcessDefinitionById(String processDefinitionId) Activates the process definition with the given id.voidactivateProcessDefinitionById(String processDefinitionId, boolean activateProcessInstances, Date activationDate) Activates the process definition with the given id.voidactivateProcessDefinitionByKey(String processDefinitionKey) Activates the process definition with the given key (=id in the bpmn20.xml file).voidactivateProcessDefinitionByKey(String processDefinitionKey, boolean activateProcessInstances, Date activationDate) Activates the process definition with the given key (=id in the bpmn20.xml file).voidactivateProcessDefinitionByKey(String processDefinitionKey, boolean activateProcessInstances, Date activationDate, String tenantId) Similar toactivateProcessDefinitionByKey(String, boolean, Date), but only applicable for the given tenant identifier.voidactivateProcessDefinitionByKey(String processDefinitionKey, String tenantId) Similar toactivateProcessDefinitionByKey(String), but only applicable for the given tenant identifier.voidaddCandidateStarterGroup(String processDefinitionId, String groupId) Authorizes a candidate group for a process definition.voidaddCandidateStarterUser(String processDefinitionId, String userId) Authorizes a candidate user for a process definition.voidaddModelEditorSource(String modelId, byte[] bytes) Saves the model editor source for a modelvoidaddModelEditorSourceExtra(String modelId, byte[] bytes) Saves the model editor source extra for a modelvoidchangeDeploymentParentDeploymentId(String deploymentId, String newParentDeploymentId) Changes the parent deployment id of a deployment.voidchangeDeploymentTenantId(String deploymentId, String newTenantId) EXPERIMENTAL FEATURE! Changes the tenant identifier of a deployment to match the given tenant identifier.voidchangeDeploymentTenantId(String deploymentId, String newTenantId, DeploymentMergeStrategy deploymentMergeStrategy) EXPERIMENTAL FEATURE! See more usage informationchangeDeploymentTenantId(String, String)voidchangeDeploymentTenantId(String deploymentId, String newTenantId, MergeMode mergeMode) EXPERIMENTAL FEATURE! See more usage informationchangeDeploymentTenantId(String, String)Starts creating a new deploymentQuery deployment.Query models.Returns a newNativeQueryfor deployment.Returns a newNativeQueryfor process definitions.Returns a newNativeQueryfor process definitions.Query process definitions.voiddeleteCandidateStarterGroup(String processDefinitionId, String groupId) Removes the authorization of a candidate group for a process definition.voiddeleteCandidateStarterUser(String processDefinitionId, String userId) Removes the authorization of a candidate user for a process definition.voiddeleteDeployment(String deploymentId) Deletes the given deployment.voiddeleteDeployment(String deploymentId, boolean cascade) Deletes the given deployment and cascade deletion to process instances, history process instances and jobs.voiddeleteModel(String modelId) getAppResourceModel(String deploymentId) Returns the app model object (.app file) for a deployment.getAppResourceObject(String deploymentId) Returns the app resource object (.app file) for a deployment.getBpmnModel(String processDefinitionId) Returns theBpmnModelcorresponding with the process definition with the provided process definition id.getDecisionsForProcessDefinition(String processDefinitionId) Retrieves theDmnDecisions associated with the given process definition.getDeploymentResourceNames(String deploymentId) Retrieves a list of deployment resources for the given deployment, ordered alphabetically.getFormDefinitionsForProcessDefinition(String processDefinitionId) Retrieves theFormDefinitions associated with the given process definition.getIdentityLinksForProcessDefinition(String processDefinitionId) Retrieves theIdentityLinks associated with the given process definition.Returns theModelbyte[]getModelEditorSource(String modelId) Returns the model editor source as a byte arraybyte[]getModelEditorSourceExtra(String modelId) Returns the model editor source extra as a byte arraygetProcessDefinition(String processDefinitionId) Returns theProcessDefinitionincluding all BPMN information like additional Properties (e.g.getProcessDiagram(String processDefinitionId) Gives access to a deployed process diagram, e.g., a PNG image, through a stream of bytes.getProcessDiagramLayout(String processDefinitionId) Provides positions and dimensions of elements in a process diagram as provided bygetProcessDiagram(String).getProcessModel(String processDefinitionId) Gives access to a deployed process model, e.g., a BPMN 2.0 XML file, through a stream of bytes.getResourceAsStream(String deploymentId, String resourceName) Gives access to a deployment resource through a stream of bytes.isFlowable5ProcessDefinition(String processDefinitionId) Checks if the process definition should be executed by the V5 engine.booleanisProcessDefinitionSuspended(String processDefinitionId) Checks if the process definition is suspended.newModel()Creates a new model.voidSaves the model.voidsetDeploymentCategory(String deploymentId, String category) Sets the category of the deployment.voidsetDeploymentKey(String deploymentId, String key) Sets the key of the deployment.voidsetProcessDefinitionCategory(String processDefinitionId, String category) Sets the category of the process definition.voidsuspendProcessDefinitionById(String processDefinitionId) Suspends the process definition with the given id.voidsuspendProcessDefinitionById(String processDefinitionId, boolean suspendProcessInstances, Date suspensionDate) Suspends the process definition with the given id.voidsuspendProcessDefinitionByKey(String processDefinitionKey) Suspends the all process definitions with the given key (= id in the bpmn20.xml file).voidsuspendProcessDefinitionByKey(String processDefinitionKey, boolean suspendProcessInstances, Date suspensionDate) Suspends the all process definitions with the given key (= id in the bpmn20.xml file).voidsuspendProcessDefinitionByKey(String processDefinitionKey, boolean suspendProcessInstances, Date suspensionDate, String tenantId) Similar tosuspendProcessDefinitionByKey(String, boolean, Date), but only applicable for the given tenant identifier.voidsuspendProcessDefinitionByKey(String processDefinitionKey, String tenantId) Similar tosuspendProcessDefinitionByKey(String), but only applicable for the given tenant identifier.validateProcess(BpmnModel bpmnModel) Validates the given process definition against the rules for executing a process definition on the process engine.
- 
Method Details- 
createDeploymentDeploymentBuilder createDeployment()Starts creating a new deployment
- 
deleteDeploymentDeletes the given deployment.- Parameters:
- deploymentId- id of the deployment, cannot be null.
- Throws:
- RuntimeException- if there are still runtime or history process instances or jobs.
 
- 
deleteDeploymentDeletes the given deployment and cascade deletion to process instances, history process instances and jobs.- Parameters:
- deploymentId- id of the deployment, cannot be null.
 
- 
setDeploymentCategorySets the category of the deployment. Deployments can be queried by category: seeDeploymentQuery.deploymentCategory(String).- Throws:
- FlowableObjectNotFoundException- if no deployment with the provided id can be found.
 
- 
setDeploymentKeySets the key of the deployment. Deployments can be queried by key: seeDeploymentQuery.deploymentKey(String).- Throws:
- FlowableObjectNotFoundException- if no deployment with the provided id can be found.
 
- 
getDeploymentResourceNamesRetrieves a list of deployment resources for the given deployment, ordered alphabetically.- Parameters:
- deploymentId- id of the deployment, cannot be null.
 
- 
getResourceAsStreamGives access to a deployment resource through a stream of bytes.- Parameters:
- deploymentId- id of the deployment, cannot be null.
- resourceName- name of the resource, cannot be null.
- Throws:
- FlowableObjectNotFoundException- when the resource doesn't exist in the given deployment or when no deployment exists for the given deploymentId.
 
- 
changeDeploymentTenantIdEXPERIMENTAL FEATURE! Changes the tenant identifier of a deployment to match the given tenant identifier. This change will cascade to any related entity: - process definitions related to the deployment - process instances related to those process definitions - executions related to those process instances - tasks related to those process instances - jobs related to the process definitions and process instances This method can be used in the case that there was no tenant identifier set on the deployment or those entities before. This method can be used to remove a tenant identifier from the deployment and related entities (simply pass null). Important: no optimistic locking will be done while executing the tenant identifier change! This is an experimental feature, mainly because it WILL NOT work properly in a clustered environment without special care: suppose some process instance is in flight. The process definition is in the process definition cache. When a task or job is created when continuing the process instance, the process definition cache will be consulted to get the process definition and from it the tenant identifier. Since it's cached, it will not be the new tenant identifier. This method does clear the cache for this engineinstance , but it will not be cleared on other nodes in a cluster (unless using a shared process definition cache).- Parameters:
- deploymentId- The id of the deployment of which the tenant identifier will be changed.
- newTenantId- The new tenant identifier.
 
- 
changeDeploymentTenantIdEXPERIMENTAL FEATURE! See more usage informationchangeDeploymentTenantId(String, String)- Parameters:
- deploymentId- The id of the deployment of which the tenant identifier will be changed.
- newTenantId- The new tenant identifier.
- mergeMode- Mode which is used to merge the deployment into the new tenant, in case the second tenant already has the same deployment key
 
- 
changeDeploymentTenantIdvoid changeDeploymentTenantId(String deploymentId, String newTenantId, DeploymentMergeStrategy deploymentMergeStrategy) EXPERIMENTAL FEATURE! See more usage informationchangeDeploymentTenantId(String, String)- Parameters:
- deploymentId- The id of the deployment of which the tenant identifier will be changed.
- newTenantId- The new tenant identifier.
- deploymentMergeStrategy- Strategy to be used to merge the deployment into the new tenant, in case the second tenant already has this deployment key
 
- 
changeDeploymentParentDeploymentIdChanges the parent deployment id of a deployment. This is used to move deployments to a different app deployment parent.- Parameters:
- deploymentId- The id of the deployment of which the parent deployment identifier will be changed.
- newParentDeploymentId- The new parent deployment identifier.
 
- 
createProcessDefinitionQueryProcessDefinitionQuery createProcessDefinitionQuery()Query process definitions.
- 
createNativeProcessDefinitionQueryNativeProcessDefinitionQuery createNativeProcessDefinitionQuery()Returns a newNativeQueryfor process definitions.
- 
createDeploymentQueryDeploymentQuery createDeploymentQuery()Query deployment.
- 
createNativeDeploymentQueryNativeDeploymentQuery createNativeDeploymentQuery()Returns a newNativeQueryfor deployment.
- 
suspendProcessDefinitionByIdSuspends the process definition with the given id. If a process definition is in state suspended, it will not be possible to start new process instances based on the process definition. Note: all the process instances of the process definition will still be active (ie. not suspended)!- Throws:
- FlowableObjectNotFoundException- if no such processDefinition can be found
- FlowableException- if the process definition is already in state suspended.
 
- 
suspendProcessDefinitionByIdvoid suspendProcessDefinitionById(String processDefinitionId, boolean suspendProcessInstances, Date suspensionDate) Suspends the process definition with the given id. If a process definition is in state suspended, it will not be possible to start new process instances based on the process definition.- Parameters:
- suspendProcessInstances- If true, all the process instances of the provided process definition will be suspended too.
- suspensionDate- The date on which the process definition will be suspended. If null, the process definition is suspended immediately. Note: The job executor needs to be active to use this!
- Throws:
- FlowableObjectNotFoundException- if no such processDefinition can be found.
- FlowableException- if the process definition is already in state suspended.
 
- 
suspendProcessDefinitionByKeySuspends the all process definitions with the given key (= id in the bpmn20.xml file). If a process definition is in state suspended, it will not be possible to start new process instances based on the process definition. Note: all the process instances of the process definition will still be active (ie. not suspended)!- Throws:
- FlowableObjectNotFoundException- if no such processDefinition can be found
- FlowableException- if the process definition is already in state suspended.
 
- 
suspendProcessDefinitionByKeyvoid suspendProcessDefinitionByKey(String processDefinitionKey, boolean suspendProcessInstances, Date suspensionDate) Suspends the all process definitions with the given key (= id in the bpmn20.xml file). If a process definition is in state suspended, it will not be possible to start new process instances based on the process definition.- Parameters:
- suspendProcessInstances- If true, all the process instances of the provided process definition will be suspended too.
- suspensionDate- The date on which the process definition will be suspended. If null, the process definition is suspended immediately. Note: The job executor needs to be active to use this!
- Throws:
- FlowableObjectNotFoundException- if no such processDefinition can be found
- FlowableException- if the process definition is already in state suspended.
 
- 
suspendProcessDefinitionByKeySimilar tosuspendProcessDefinitionByKey(String), but only applicable for the given tenant identifier.
- 
suspendProcessDefinitionByKeyvoid suspendProcessDefinitionByKey(String processDefinitionKey, boolean suspendProcessInstances, Date suspensionDate, String tenantId) Similar tosuspendProcessDefinitionByKey(String, boolean, Date), but only applicable for the given tenant identifier.
- 
activateProcessDefinitionByIdActivates the process definition with the given id.- Throws:
- FlowableObjectNotFoundException- if no such processDefinition can be found or if the process definition is already in state active.
 
- 
activateProcessDefinitionByIdvoid activateProcessDefinitionById(String processDefinitionId, boolean activateProcessInstances, Date activationDate) Activates the process definition with the given id.- Parameters:
- activationDate- The date on which the process definition will be activated. If null, the process definition is activated immediately. Note: The job executor needs to be active to use this!
- Throws:
- FlowableObjectNotFoundException- if no such processDefinition can be found.
- FlowableException- if the process definition is already in state active.
 
- 
activateProcessDefinitionByKeyActivates the process definition with the given key (=id in the bpmn20.xml file).- Throws:
- FlowableObjectNotFoundException- if no such processDefinition can be found.
- FlowableException- if the process definition is already in state active.
 
- 
activateProcessDefinitionByKeyvoid activateProcessDefinitionByKey(String processDefinitionKey, boolean activateProcessInstances, Date activationDate) Activates the process definition with the given key (=id in the bpmn20.xml file).- Parameters:
- activationDate- The date on which the process definition will be activated. If null, the process definition is activated immediately. Note: The job executor needs to be active to use this!
- Throws:
- FlowableObjectNotFoundException- if no such processDefinition can be found.
- FlowableException- if the process definition is already in state active.
 
- 
activateProcessDefinitionByKeySimilar toactivateProcessDefinitionByKey(String), but only applicable for the given tenant identifier.
- 
activateProcessDefinitionByKeyvoid activateProcessDefinitionByKey(String processDefinitionKey, boolean activateProcessInstances, Date activationDate, String tenantId) Similar toactivateProcessDefinitionByKey(String, boolean, Date), but only applicable for the given tenant identifier.
- 
setProcessDefinitionCategorySets the category of the process definition. Process definitions can be queried by category: seeProcessDefinitionQuery.processDefinitionCategory(String).- Throws:
- FlowableObjectNotFoundException- if no process definition with the provided id can be found.
 
- 
getProcessModelGives access to a deployed process model, e.g., a BPMN 2.0 XML file, through a stream of bytes.- Parameters:
- processDefinitionId- id of a- ProcessDefinition, cannot be null.
- Throws:
- FlowableObjectNotFoundException- when the process model doesn't exist.
 
- 
getProcessDiagramGives access to a deployed process diagram, e.g., a PNG image, through a stream of bytes.- Parameters:
- processDefinitionId- id of a- ProcessDefinition, cannot be null.
- Returns:
- null when the diagram resource name of a ProcessDefinitionis null.
- Throws:
- FlowableObjectNotFoundException- when the process diagram doesn't exist.
 
- 
getProcessDefinitionReturns theProcessDefinitionincluding all BPMN information like additional Properties (e.g. documentation).
- 
isFlowable5ProcessDefinitionChecks if the process definition should be executed by the V5 engine.
- 
isProcessDefinitionSuspendedChecks if the process definition is suspended.
- 
getBpmnModel
- 
getProcessDiagramLayoutProvides positions and dimensions of elements in a process diagram as provided bygetProcessDiagram(String). This method requires a process model and a diagram image to be deployed.- Parameters:
- processDefinitionId- id of a- ProcessDefinition, cannot be null.
- Returns:
- DiagramLayout instance containing diagram info, null when the input stream of a process diagram is null.
- Throws:
- FlowableObjectNotFoundException- when the process model or diagram doesn't exist.
 
- 
getAppResourceObjectReturns the app resource object (.app file) for a deployment.
- 
getAppResourceModelReturns the app model object (.app file) for a deployment.
- 
newModelModel newModel()Creates a new model. The model is transient and must be saved usingsaveModel(Model).
- 
saveModelSaves the model. If the model already existed, the model is updated otherwise a new model is created.- Parameters:
- model- model to save, cannot be null.
 
- 
deleteModel- Parameters:
- modelId- id of model to delete, cannot be null. When an id is passed for a non-existent model, this operation is ignored.
 
- 
addModelEditorSourceSaves the model editor source for a model- Parameters:
- modelId- id of model to delete, cannot be null. When an id is passed for a non-existent model, this operation is ignored.
 
- 
addModelEditorSourceExtraSaves the model editor source extra for a model- Parameters:
- modelId- id of model to delete, cannot be null. When an id is passed for an unexisting model, this operation is ignored.
 
- 
createModelQueryModelQuery createModelQuery()Query models.
- 
createNativeModelQueryNativeModelQuery createNativeModelQuery()Returns a newNativeQueryfor process definitions.
- 
getModelReturns theModel- Parameters:
- modelId- id of model
 
- 
getModelEditorSourceReturns the model editor source as a byte array- Parameters:
- modelId- id of model
 
- 
getModelEditorSourceExtraReturns the model editor source extra as a byte array- Parameters:
- modelId- id of model
 
- 
addCandidateStarterUserAuthorizes a candidate user for a process definition.- Parameters:
- processDefinitionId- id of the process definition, cannot be null.
- userId- id of the user involve, cannot be null.
- Throws:
- FlowableObjectNotFoundException- when the process definition or user doesn't exist.
 
- 
addCandidateStarterGroupAuthorizes a candidate group for a process definition.- Parameters:
- processDefinitionId- id of the process definition, cannot be null.
- groupId- id of the group involve, cannot be null.
- Throws:
- FlowableObjectNotFoundException- when the process definition or group doesn't exist.
 
- 
deleteCandidateStarterUserRemoves the authorization of a candidate user for a process definition.- Parameters:
- processDefinitionId- id of the process definition, cannot be null.
- userId- id of the user involve, cannot be null.
- Throws:
- FlowableObjectNotFoundException- when the process definition or user doesn't exist.
 
- 
deleteCandidateStarterGroupRemoves the authorization of a candidate group for a process definition.- Parameters:
- processDefinitionId- id of the process definition, cannot be null.
- groupId- id of the group involve, cannot be null.
- Throws:
- FlowableObjectNotFoundException- when the process definition or group doesn't exist.
 
- 
getIdentityLinksForProcessDefinitionRetrieves theIdentityLinks associated with the given process definition. Such anIdentityLinkinforms how a certain identity (eg. group or user) is authorized for a certain process definition
- 
validateProcessValidates the given process definition against the rules for executing a process definition on the process engine. To create such aBpmnModelfrom a String, following code may be used: XMLInputFactory xif = XMLInputFactory.newInstance(); InputStreamReader in = new InputStreamReader(new ByteArrayInputStream(myProcess.getBytes()), "UTF-8"); // Change to other streams for eg from classpath XMLStreamReader xtr = xif.createXMLStreamReader(in); bpmnModel = new BpmnXMLConverter().convertToBpmnModel(xtr);
- 
getDecisionsForProcessDefinitionRetrieves theDmnDecisions associated with the given process definition.- Parameters:
- processDefinitionId- id of the process definition, cannot be null.
 
- 
getFormDefinitionsForProcessDefinitionRetrieves theFormDefinitions associated with the given process definition.- Parameters:
- processDefinitionId- id of the process definition, cannot be null.
 
 
-