Interface DeploymentWithDefinitions
-
- All Superinterfaces:
Deployment
- All Known Subinterfaces:
ProcessApplicationDeployment
- All Known Implementing Classes:
DeploymentEntity
,DeploymentStatisticsEntity
,ProcessApplicationDeploymentImpl
public interface DeploymentWithDefinitions extends Deployment
An extension of the deployment interface to expose the deployed definitions.- Author:
- Christopher Zell
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<CaseDefinition>
getDeployedCaseDefinitions()
Returns the case definitions, which are deployed with that deployment.List<DecisionDefinition>
getDeployedDecisionDefinitions()
Returns the decision definitions, which are deployed with that deploymentList<DecisionRequirementsDefinition>
getDeployedDecisionRequirementsDefinitions()
Returns the decision requirements definitions, which are deployed with that deploymentList<ProcessDefinition>
getDeployedProcessDefinitions()
Returns the process definitions, which are deployed with that deployment.-
Methods inherited from interface org.camunda.bpm.engine.repository.Deployment
getDeploymentTime, getId, getName, getSource, getTenantId
-
-
-
-
Method Detail
-
getDeployedProcessDefinitions
List<ProcessDefinition> getDeployedProcessDefinitions()
Returns the process definitions, which are deployed with that deployment.- Returns:
- the process definitions which are deployed
-
getDeployedCaseDefinitions
List<CaseDefinition> getDeployedCaseDefinitions()
Returns the case definitions, which are deployed with that deployment.- Returns:
- the case definitions, which are deployed
-
getDeployedDecisionDefinitions
List<DecisionDefinition> getDeployedDecisionDefinitions()
Returns the decision definitions, which are deployed with that deployment- Returns:
- the decision definitions, which are deployed
-
getDeployedDecisionRequirementsDefinitions
List<DecisionRequirementsDefinition> getDeployedDecisionRequirementsDefinitions()
Returns the decision requirements definitions, which are deployed with that deployment- Returns:
- the decision definitions, which are deployed
-
-