| | |
| | | **/ |
| | | public class WorkflowModelDto implements Serializable { |
| | | |
| | | private String flowId; |
| | | |
| | | private String name; |
| | | |
| | | private String key; |
| | |
| | | private String description; |
| | | private String json_xml; |
| | | private String svg_xml; |
| | | private String storeId; |
| | | |
| | | private String deploymentId; |
| | | |
| | | public String getName() { |
| | | return name; |
| | |
| | | public void setSvg_xml(String svg_xml) { |
| | | this.svg_xml = svg_xml; |
| | | } |
| | | |
| | | public String getDeploymentId() { |
| | | return deploymentId; |
| | | } |
| | | |
| | | public void setDeploymentId(String deploymentId) { |
| | | this.deploymentId = deploymentId; |
| | | } |
| | | |
| | | public String getFlowId() { |
| | | return flowId; |
| | | } |
| | | |
| | | public void setFlowId(String flowId) { |
| | | this.flowId = flowId; |
| | | } |
| | | |
| | | public String getStoreId() { |
| | | return storeId; |
| | | } |
| | | |
| | | public void setStoreId(String storeId) { |
| | | this.storeId = storeId; |
| | | } |
| | | } |