b474716248edc1db04a1270923ac9cb5fc43009a
[sdc/sdc-workflow-designer.git] /
1 /**
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
8  *
9  * Contributors:
10  *     ZTE - initial API and implementation and/or initial documentation
11  */
12 package org.onap.sdc.workflowdesigner.resources.entity;
13
14 import com.google.gson.JsonObject;
15
16 /**
17  *
18  */
19 public class WorkflowInfo {
20   private String uuid;
21   
22   private String operationId;
23   
24   private String id;
25   
26   private String name;
27   
28   private String description;
29   
30   private String scene;
31   
32   private JsonObject data;
33
34   /**
35    * @return the uuid
36    */
37   public String getUuid() {
38     return uuid;
39   }
40
41   /**
42    * @param uuid the uuid to set
43    */
44   public void setUuid(String uuid) {
45     this.uuid = uuid;
46   }
47
48   /**
49    * @return the operationId
50    */
51   public String getOperationId() {
52     return operationId;
53   }
54
55   /**
56    * @param operationId the operationId to set
57    */
58   public void setOperationId(String operationId) {
59     this.operationId = operationId;
60   }
61
62   /**
63    * @return the id
64    */
65   public String getId() {
66     return id;
67   }
68
69   /**
70    * @param id the id to set
71    */
72   public void setId(String id) {
73     this.id = id;
74   }
75
76   /**
77    * @return the name
78    */
79   public String getName() {
80     return name;
81   }
82
83   /**
84    * @param name the name to set
85    */
86   public void setName(String name) {
87     this.name = name;
88   }
89
90   /**
91    * @return the description
92    */
93   public String getDescription() {
94     return description;
95   }
96
97   /**
98    * @param description the description to set
99    */
100   public void setDescription(String description) {
101     this.description = description;
102   }
103
104   /**
105    * @return the scene
106    */
107   public String getScene() {
108     return scene;
109   }
110
111   /**
112    * @param scene the scene to set
113    */
114   public void setScene(String scene) {
115     this.scene = scene;
116   }
117
118   /**
119    * @return the data
120    */
121   public JsonObject getData() {
122     return data;
123   }
124
125   /**
126    * @param data the data to set
127    */
128   public void setData(JsonObject data) {
129     this.data = data;
130   }
131
132   
133 }