cce803b8d91f0148c87f2780ba84a891d0d85750
[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.externalservice.sdc.entity;\r
13 \r
14 import com.google.gson.annotations.SerializedName;\r
15 \r
16 /**\r
17  *\r
18  */\r
19 public class Parameter {\r
20   private String name;\r
21   \r
22   private String type;\r
23   \r
24   @SerializedName("default")\r
25   private String defaultValue;\r
26   \r
27   private String value;\r
28 \r
29   /**\r
30    * @return the name\r
31    */\r
32   public String getName() {\r
33     return name;\r
34   }\r
35 \r
36   /**\r
37    * @param name the name to set\r
38    */\r
39   public void setName(String name) {\r
40     this.name = name;\r
41   }\r
42 \r
43   /**\r
44    * @return the type\r
45    */\r
46   public String getType() {\r
47     return type;\r
48   }\r
49 \r
50   /**\r
51    * @param type the type to set\r
52    */\r
53   public void setType(String type) {\r
54     this.type = type;\r
55   }\r
56 \r
57   /**\r
58    * @return the defaultValue\r
59    */\r
60   public String getDefaultValue() {\r
61     return defaultValue;\r
62   }\r
63 \r
64   /**\r
65    * @param defaultValue the defaultValue to set\r
66    */\r
67   public void setDefaultValue(String defaultValue) {\r
68     this.defaultValue = defaultValue;\r
69   }\r
70 \r
71   /**\r
72    * @return the value\r
73    */\r
74   public String getValue() {\r
75     return value;\r
76   }\r
77 \r
78   /**\r
79    * @param value the value to set\r
80    */\r
81   public void setValue(String value) {\r
82     this.value = value;\r
83   }\r
84   \r
85   \r
86 \r
87 }\r