Class DeploymentWithDefinitionsDto
- java.lang.Object
-
- org.camunda.bpm.engine.rest.dto.LinkableDto
-
- org.camunda.bpm.engine.rest.dto.repository.DeploymentDto
-
- org.camunda.bpm.engine.rest.dto.repository.DeploymentWithDefinitionsDto
-
public class DeploymentWithDefinitionsDto extends DeploymentDto
- Author:
- Christopher Zell
-
-
Field Summary
Fields Modifier and Type Field Description protected Map<String,CaseDefinitionDto>
deployedCaseDefinitions
protected Map<String,DecisionDefinitionDto>
deployedDecisionDefinitions
protected Map<String,DecisionRequirementsDefinitionDto>
deployedDecisionRequirementsDefinitions
protected Map<String,ProcessDefinitionDto>
deployedProcessDefinitions
-
Fields inherited from class org.camunda.bpm.engine.rest.dto.repository.DeploymentDto
deploymentTime, id, name, source, tenantId
-
Fields inherited from class org.camunda.bpm.engine.rest.dto.LinkableDto
links
-
-
Constructor Summary
Constructors Constructor Description DeploymentWithDefinitionsDto()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DeploymentWithDefinitionsDto
fromDeployment(DeploymentWithDefinitions deployment)
Map<String,CaseDefinitionDto>
getDeployedCaseDefinitions()
Map<String,DecisionDefinitionDto>
getDeployedDecisionDefinitions()
Map<String,DecisionRequirementsDefinitionDto>
getDeployedDecisionRequirementsDefinitions()
Map<String,ProcessDefinitionDto>
getDeployedProcessDefinitions()
-
Methods inherited from class org.camunda.bpm.engine.rest.dto.repository.DeploymentDto
fromDeployment, getDeploymentTime, getId, getName, getSource, getTenantId
-
Methods inherited from class org.camunda.bpm.engine.rest.dto.LinkableDto
addLink, addReflexiveLink, generateLink, getLinks
-
-
-
-
Field Detail
-
deployedProcessDefinitions
protected Map<String,ProcessDefinitionDto> deployedProcessDefinitions
-
deployedCaseDefinitions
protected Map<String,CaseDefinitionDto> deployedCaseDefinitions
-
deployedDecisionDefinitions
protected Map<String,DecisionDefinitionDto> deployedDecisionDefinitions
-
deployedDecisionRequirementsDefinitions
protected Map<String,DecisionRequirementsDefinitionDto> deployedDecisionRequirementsDefinitions
-
-
Method Detail
-
getDeployedProcessDefinitions
public Map<String,ProcessDefinitionDto> getDeployedProcessDefinitions()
-
getDeployedCaseDefinitions
public Map<String,CaseDefinitionDto> getDeployedCaseDefinitions()
-
getDeployedDecisionDefinitions
public Map<String,DecisionDefinitionDto> getDeployedDecisionDefinitions()
-
getDeployedDecisionRequirementsDefinitions
public Map<String,DecisionRequirementsDefinitionDto> getDeployedDecisionRequirementsDefinitions()
-
fromDeployment
public static DeploymentWithDefinitionsDto fromDeployment(DeploymentWithDefinitions deployment)
-
-