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