Add Nfvo external system backend changes in ESR
[aai/esr-server.git] / esr-mgr / src / main / java / org / onap / aai / esr / entity / rest / NfvoRegisterInfo.java
1 /**
2  * Copyright 2019  Verizon. All Rights Reserved.
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 NfvoRegisterInfo {
19
20     private String nfvoId;
21
22     private String name;
23
24     private String apiroot;
25
26     private String vendor;
27
28     private String version;
29
30     private String url;
31
32     private String userName;
33
34     private String password;
35
36     public String getNfvoId() {
37         return nfvoId;
38     }
39
40     public void setNfvoId(String nfvoId) {
41         this.nfvoId = nfvoId;
42     }
43
44     public String getName() {
45         return name;
46     }
47
48     public void setName(String name) {
49         this.name = name;
50     }
51
52     public String getApiroot() {
53         return apiroot;
54     }
55
56     public void setApiroot(String apiroot) {
57         this.apiroot = apiroot;
58     }
59
60     public String getVendor() {
61         return vendor;
62     }
63
64     public void setVendor(String vendor) {
65         this.vendor = vendor;
66     }
67
68     public String getVersion() {
69         return version;
70     }
71
72     public void setVersion(String version) {
73         this.version = version;
74     }
75
76     public String getUrl() {
77         return url;
78     }
79
80     public void setUrl(String url) {
81         this.url = url;
82     }
83
84     public String getUserName() {
85         return userName;
86     }
87
88     public void setUserName(String userName) {
89         this.userName = userName;
90     }
91
92     public String getPassword() {
93         return password;
94     }
95
96     public void setPassword(String password) {
97         this.password = password;
98     }
99
100 }