2 * Copyright (c) 2018 ZTE Corporation.
3 * All rights reserved. This program and the accompanying materials
4 * are made available under the Apache License, Version 2.0
5 * and the Eclipse Public License v1.0 which both accompany this distribution,
6 * and are available at http://www.eclipse.org/legal/epl-v10.html
7 * and http://www.apache.org/licenses/LICENSE-2.0
10 * ZTE - initial API and implementation and/or initial documentation
12 package org.onap.sdc.workflowdesigner.resources.entity;
14 import com.google.gson.JsonObject;
19 public class WorkflowInfo {
22 private String operationId;
28 private String description;
32 private JsonObject data;
37 public String getUuid() {
42 * @param uuid the uuid to set
44 public void setUuid(String uuid) {
49 * @return the operationId
51 public String getOperationId() {
56 * @param operationId the operationId to set
58 public void setOperationId(String operationId) {
59 this.operationId = operationId;
65 public String getId() {
70 * @param id the id to set
72 public void setId(String id) {
79 public String getName() {
84 * @param name the name to set
86 public void setName(String name) {
91 * @return the description
93 public String getDescription() {
98 * @param description the description to set
100 public void setDescription(String description) {
101 this.description = description;
107 public String getScene() {
112 * @param scene the scene to set
114 public void setScene(String scene) {
121 public JsonObject getData() {
126 * @param data the data to set
128 public void setData(JsonObject data) {