Class UnpackedFlowchartSnapshot
- java.lang.Object
-
- de.xima.fc.workflow.designer.model.UnpackedFlowchartSnapshot
-
- All Implemented Interfaces:
Serializable
public final class UnpackedFlowchartSnapshot extends Object implements Serializable
POJO for an extracted flowchart snapshot.- Since:
- 7.0.0
- Author:
- XIMA MEDIA GmbH
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UnpackedFlowchartSnapshot(ProcessModel processModel, Map<ElementKey,com.alibaba.fastjson.JSONObject> paramsMap, List<WorkflowStateModel> mergedStates)
Creates a new POJO with the given data.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<WorkflowStateModel>
getMergedStates()
Map<ElementKey,com.alibaba.fastjson.JSONObject>
getParamsMap()
ProcessModel
getProcessModel()
-
-
-
Constructor Detail
-
UnpackedFlowchartSnapshot
public UnpackedFlowchartSnapshot(ProcessModel processModel, Map<ElementKey,com.alibaba.fastjson.JSONObject> paramsMap, List<WorkflowStateModel> mergedStates)
Creates a new POJO with the given data.- Parameters:
processModel
- Value returned bygetProcessModel()
.paramsMap
- Value returned bygetParamsMap()
.mergedStates
- Value returned bygetMergedStates()
.
-
-
Method Detail
-
getMergedStates
public List<WorkflowStateModel> getMergedStates()
- Returns:
- The states from the snapshot, merged with the persistent states.
-
getParamsMap
public Map<ElementKey,com.alibaba.fastjson.JSONObject> getParamsMap()
- Returns:
- The params map from the snapshot.
-
getProcessModel
public ProcessModel getProcessModel()
- Returns:
- The process model from the snapshot.
-
-