Does anyone know if there are Java API calls to delete CMMN (and DMN) definitions?
I can see that on the RepositoryService interface there is a “deleteProcessDefinition” call that I can use to delete a BPMN definition, however I can’t see an equivalent call for CMMN or DMN’s.
For example, I can use this to delete a process definition by it’s ID, and need the same for the other types:
processEngine.getRepositoryService().deleteProcessDefinition(processDefinitionId, true, true);
Thanks Steve