use of org.activiti.engine.RepositoryService in project bamboobsc by billchen198318.
the class TestBPMN001 method deleteProcess.
@Test
public void deleteProcess() throws Exception {
String deploymentId = "10001";
RepositoryService repositoryService = (RepositoryService) AppContext.getBean("repositoryService");
repositoryService.deleteDeployment(deploymentId);
//repositoryService.deleteDeployment(processId, true); no need it
}
Aggregations