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