return commandExecutor.execute(new GetDeploymentBpmnModelInstanceCmd(processDefinitionId));
}
public CmmnModelInstance getCmmnModelInstance(String caseDefinitionId) {
try {
return commandExecutor.execute(new GetDeploymentCmmnModelInstanceCmd(caseDefinitionId));
} catch (NullValueException e) {
throw new NotValidException(e.getMessage(), e);
} catch (CmmnModelInstanceNotFoundException e) {