ecaffb382c87cb43c594c5f0ef2dc6dbaa9b3437
[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.externalservice.sdc.entity;
13
14 /**
15  *
16  */
17 public class ActivitySpec {
18   private String id;
19   
20   private String versionId;
21   
22   private String name;
23   
24   private String description;
25   
26   private String type;
27   
28   private String content;
29   
30   private String[] categoryList;
31
32   private Parameter[] inputs;
33   
34   private Parameter[] outputs;
35
36   private String status;
37
38   /**
39    * @return the id
40    */
41   public String getId() {
42     return id;
43   }
44
45   /**
46    * @param id the id to set
47    */
48   public void setId(String id) {
49     this.id = id;
50   }
51
52   /**
53    * @return the versionId
54    */
55   public String getVersionId() {
56     return versionId;
57   }
58
59   /**
60    * @param versionId the versionId to set
61    */
62   public void setVersionId(String versionId) {
63     this.versionId = versionId;
64   }
65
66   /**
67    * @return the name
68    */
69   public String getName() {
70     return name;
71   }
72
73   /**
74    * @param name the name to set
75    */
76   public void setName(String name) {
77     this.name = name;
78   }
79
80   /**
81    * @return the description
82    */
83   public String getDescription() {
84     return description;
85   }
86
87   /**
88    * @param description the description to set
89    */
90   public void setDescription(String description) {
91     this.description = description;
92   }
93
94   /**
95    * @return the type
96    */
97   public String getType() {
98     return type;
99   }
100
101   /**
102    * @param type the type to set
103    */
104   public void setType(String type) {
105     this.type = type;
106   }
107
108   /**
109    * @return the content
110    */
111   public String getContent() {
112     return content;
113   }
114
115   /**
116    * @param content the content to set
117    */
118   public void setContent(String content) {
119     this.content = content;
120   }
121
122   /**
123    * @return the categoryList
124    */
125   public String[] getCategoryList() {
126     return categoryList;
127   }
128
129   /**
130    * @param categoryList the categoryList to set
131    */
132   public void setCategoryList(String[] categoryList) {
133     this.categoryList = categoryList;
134   }
135
136   /**
137    * @return the inputs
138    */
139   public Parameter[] getInputs() {
140     return inputs;
141   }
142
143   /**
144    * @param inputs the inputs to set
145    */
146   public void setInputs(Parameter[] inputs) {
147     this.inputs = inputs;
148   }
149
150   /**
151    * @return the outputs
152    */
153   public Parameter[] getOutputs() {
154     return outputs;
155   }
156
157   /**
158    * @param outputs the outputs to set
159    */
160   public void setOutputs(Parameter[] outputs) {
161     this.outputs = outputs;
162   }
163
164   /**
165    * @return the status
166    */
167   public String getStatus() {
168     return status;
169   }
170
171   /**
172    * @param status the status to set
173    */
174   public void setStatus(String status) {
175     this.status = status;
176   }
177   
178   
179 }