Create seed code of svnfm vnfmdriver
[vfc/nfvo/driver/vnfm/svnfm.git] / nokia / vnfmdriver / vfcadaptorservice / vfcadaptor / src / main / java / com / nokia / vfcadaptor / cbam / bo / entity / Inputs.java
1 package com.nokia.vfcadaptor.cbam.bo.entity;
2
3 import com.fasterxml.jackson.annotation.JsonProperty;
4
5 public class Inputs {
6    
7         @JsonProperty("key_name")
8         private String key_name;
9         
10         @JsonProperty("value")
11         private String value;
12         
13         @JsonProperty("type")
14         private String type;
15         
16         @JsonProperty("default1")
17         private String default1;
18         
19         @JsonProperty("description")
20         private String description;
21
22         public String getKey_name() {
23                 return key_name;
24         }
25
26         public void setKey_name(String key_name) {
27                 this.key_name = key_name;
28         }
29
30         public String getValue() {
31                 return value;
32         }
33
34         public void setValue(String value) {
35                 this.value = value;
36         }
37
38         public String getType() {
39                 return type;
40         }
41
42         public void setType(String type) {
43                 this.type = type;
44         }
45
46         public String getDefault1() {
47                 return default1;
48         }
49
50         public void setDefault1(String default1) {
51                 this.default1 = default1;
52         }
53
54         public String getDescription() {
55                 return description;
56         }
57
58         public void setDescription(String description) {
59                 this.description = description;
60         }
61         
62         
63         
64         
65         
66 }