Interface BpmnProcessManager
- All Known Implementing Classes:
FlowableBpmnProcessManager
public interface BpmnProcessManager
-
Method Summary
Modifier and TypeMethodDescriptionvoid
deleteProcess
(String key) Remove the process for the given key.void
exportDiagram
(String key, OutputStream os) Export the process graphical representation for the given key (if available).void
exportProcess
(String key, BpmnProcessFormat format, OutputStream os) Export the process for the given key, in the requested format.void
importProcess
(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
-