Interface BpmnProcessManager
- All Known Implementing Classes:
FlowableBpmnProcessManager
public interface BpmnProcessManager
-
Method Summary
Modifier and TypeMethodDescriptionvoiddeleteProcess(String key) Remove the process for the given key.voidexportDiagram(String key, OutputStream os) Export the process graphical representation for the given key (if available).voidexportProcess(String key, BpmnProcessFormat format, OutputStream os) Export the process for the given key, in the requested format.voidimportProcess(String key, BpmnProcessFormat format, String process) Import the process for the given key.
-
Method Details
-
getProcesses
List<BpmnProcess> getProcesses()- Returns:
- all available workflow processes.
-
exportProcess
Export the process for the given key, in the requested format.- Parameters:
key- process keyformat- export formatos- export stream
-
exportDiagram
Export the process graphical representation for the given key (if available).- Parameters:
key- process keyos- export stream
-
importProcess
Import the process for the given key.- Parameters:
key- process keyformat- import formatprocess- process
-
deleteProcess
Remove the process for the given key.- Parameters:
key- process key
-