| | |
| | | **/ |
| | | public class WorkflowModelDto implements Serializable { |
| | | |
| | | private String flowId; |
| | | |
| | | private String name; |
| | | |
| | | private String key; |
| | | |
| | | private String modelId; |
| | | |
| | | private String description; |
| | | private String json_xml; |
| | | private String svg_xml; |
| | | private String storeId; |
| | | |
| | | private String deploymentId; |
| | | |
| | | public String getName() { |
| | | return name; |
| | |
| | | public void setModelId(String modelId) { |
| | | this.modelId = modelId; |
| | | } |
| | | |
| | | public String getDescription() { |
| | | return description; |
| | | } |
| | | |
| | | public void setDescription(String description) { |
| | | this.description = description; |
| | | } |
| | | |
| | | public String getJson_xml() { |
| | | return json_xml; |
| | | } |
| | | |
| | | public void setJson_xml(String json_xml) { |
| | | this.json_xml = json_xml; |
| | | } |
| | | |
| | | public String getSvg_xml() { |
| | | return svg_xml; |
| | | } |
| | | |
| | | 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; |
| | | } |
| | | } |