Repository Service
CMMN is deprecated
CMMN support is deprecated as of EximeeBPMS 1.3.0 and will be removed in 1.4.0. See CMMN Deprecation & Removal for detection queries and upgrade guidance.
It is also possible to access the CMMN model instance by the case definition id using the Repository Service, as the following incomplete test sample code shows.
public void testRepositoryService() {
String caseDefinitionId = repositoryService.createCaseDefinitionQuery()
.caseDefinitionKey(CASE_KEY).singleResult().getId();
CmmnModelInstance modelInstance = repositoryService
.getCmmnModelInstance(caseDefinitionId);
}