All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyuncs.schedulerx2.model.v20190430.GetWorkFlowResponse Maven / Gradle / Ivy

Go to download

Aliyun Open API SDK for Java Copyright (C) Alibaba Cloud Computing All rights reserved. 版权所有 (C)阿里云计算有限公司 http://www.aliyun.com

There is a newer version: 1.1.13
Show newest version
/*
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.aliyuncs.schedulerx2.model.v20190430;

import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.schedulerx2.transform.v20190430.GetWorkFlowResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;

/**
 * @author auto create
 * @version 
 */
public class GetWorkFlowResponse extends AcsResponse {

	private String requestId;

	private Integer code;

	private String message;

	private Boolean success;

	private Data data;

	public String getRequestId() {
		return this.requestId;
	}

	public void setRequestId(String requestId) {
		this.requestId = requestId;
	}

	public Integer getCode() {
		return this.code;
	}

	public void setCode(Integer code) {
		this.code = code;
	}

	public String getMessage() {
		return this.message;
	}

	public void setMessage(String message) {
		this.message = message;
	}

	public Boolean getSuccess() {
		return this.success;
	}

	public void setSuccess(Boolean success) {
		this.success = success;
	}

	public Data getData() {
		return this.data;
	}

	public void setData(Data data) {
		this.data = data;
	}

	public static class Data {

		private WorkFlowInfo workFlowInfo;

		private WorkFlowNodeInfo workFlowNodeInfo;

		public WorkFlowInfo getWorkFlowInfo() {
			return this.workFlowInfo;
		}

		public void setWorkFlowInfo(WorkFlowInfo workFlowInfo) {
			this.workFlowInfo = workFlowInfo;
		}

		public WorkFlowNodeInfo getWorkFlowNodeInfo() {
			return this.workFlowNodeInfo;
		}

		public void setWorkFlowNodeInfo(WorkFlowNodeInfo workFlowNodeInfo) {
			this.workFlowNodeInfo = workFlowNodeInfo;
		}

		public static class WorkFlowInfo {

			private Long workflowId;

			private String name;

			private String description;

			private String status;

			private String timeType;

			private String timeExpression;

			public Long getWorkflowId() {
				return this.workflowId;
			}

			public void setWorkflowId(Long workflowId) {
				this.workflowId = workflowId;
			}

			public String getName() {
				return this.name;
			}

			public void setName(String name) {
				this.name = name;
			}

			public String getDescription() {
				return this.description;
			}

			public void setDescription(String description) {
				this.description = description;
			}

			public String getStatus() {
				return this.status;
			}

			public void setStatus(String status) {
				this.status = status;
			}

			public String getTimeType() {
				return this.timeType;
			}

			public void setTimeType(String timeType) {
				this.timeType = timeType;
			}

			public String getTimeExpression() {
				return this.timeExpression;
			}

			public void setTimeExpression(String timeExpression) {
				this.timeExpression = timeExpression;
			}
		}

		public static class WorkFlowNodeInfo {

			private List nodes;

			private List edges;

			public List getNodes() {
				return this.nodes;
			}

			public void setNodes(List nodes) {
				this.nodes = nodes;
			}

			public List getEdges() {
				return this.edges;
			}

			public void setEdges(List edges) {
				this.edges = edges;
			}

			public static class Node {

				private Long id;

				private String label;

				private Integer status;

				public Long getId() {
					return this.id;
				}

				public void setId(Long id) {
					this.id = id;
				}

				public String getLabel() {
					return this.label;
				}

				public void setLabel(String label) {
					this.label = label;
				}

				public Integer getStatus() {
					return this.status;
				}

				public void setStatus(Integer status) {
					this.status = status;
				}
			}

			public static class Edge {

				private Long source;

				private Long target;

				public Long getSource() {
					return this.source;
				}

				public void setSource(Long source) {
					this.source = source;
				}

				public Long getTarget() {
					return this.target;
				}

				public void setTarget(Long target) {
					this.target = target;
				}
			}
		}
	}

	@Override
	public GetWorkFlowResponse getInstance(UnmarshallerContext context) {
		return	GetWorkFlowResponseUnmarshaller.unmarshall(this, context);
	}

	@Override
	public boolean checkShowJsonItemName() {
		return false;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy