Fix the java code style issue.
[aai/esr-server.git] / esr-mgr / src / main / java / org / onap / aai / esr / entity / rest / VnfmRegisterInfo.java
1 /**
2  * Copyright 2016-2017 ZTE Corporation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.onap.aai.esr.entity.rest;
17
18 public class VnfmRegisterInfo {
19
20     private String vnfmId;
21
22     private String name;
23
24     private String type;
25
26     private String vimId;
27
28     private String vendor;
29
30     private String version;
31
32     private String certificateUrl;
33
34     private String url;
35
36     private String userName;
37
38     private String password;
39
40     public String getVnfmId() {
41         return vnfmId;
42     }
43
44     public void setVnfmId(String vnfmId) {
45         this.vnfmId = vnfmId;
46     }
47
48     public String getName() {
49         return name;
50     }
51
52     public void setName(String name) {
53         this.name = name;
54     }
55
56     public String getType() {
57         return type;
58     }
59
60     public void setType(String type) {
61         this.type = type;
62     }
63
64     public String getVimId() {
65         return vimId;
66     }
67
68     public void setVimId(String vimId) {
69         this.vimId = vimId;
70     }
71
72     public String getVendor() {
73         return vendor;
74     }
75
76     public void setVendor(String vendor) {
77         this.vendor = vendor;
78     }
79
80     public String getVersion() {
81         return version;
82     }
83
84     public void setVersion(String version) {
85         this.version = version;
86     }
87
88     public String getCertificateUrl() {
89         return certificateUrl;
90     }
91
92     public void setCertificateUrl(String certificateUrl) {
93         this.certificateUrl = certificateUrl;
94     }
95
96     public String getUrl() {
97         return url;
98     }
99
100     public void setUrl(String url) {
101         this.url = url;
102     }
103
104     public String getUserName() {
105         return userName;
106     }
107
108     public void setUserName(String userName) {
109         this.userName = userName;
110     }
111
112     public String getPassword() {
113         return password;
114     }
115
116     public void setPassword(String password) {
117         this.password = password;
118     }
119
120 }