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