Create seed code of svnfm vnfmdriver
[vfc/nfvo/driver/vnfm/svnfm.git] / nokia / vnfmdriver / vfcadaptorservice / vfcadaptor / src / main / java / com / nokia / vfcadaptor / common / bo / AdaptorEnv.java
1 /*
2  * Copyright 2016-2017, Nokia 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
17 package com.nokia.vfcadaptor.common.bo;
18
19 public class AdaptorEnv {
20         private String nslcmIp;
21         private String nslcmPort;
22         
23         //for retrieving token
24         private String cbamIp;
25         
26         private String grantType;
27         private String clientId;
28         private String clientSecret;
29         
30         private String catalogIp;
31         private String catalogPort;
32
33         public String getCbamIp() {
34                 return cbamIp;
35         }
36
37         public void setCbamIp(String cbamIp) {
38                 this.cbamIp = cbamIp;
39         }
40
41         public String getGrantType() {
42                 return grantType;
43         }
44
45         public void setGrantType(String grantType) {
46                 this.grantType = grantType;
47         }
48
49         public String getClientId() {
50                 return clientId;
51         }
52
53         public void setClientId(String clientId) {
54                 this.clientId = clientId;
55         }
56
57         public String getClientSecret() {
58                 return clientSecret;
59         }
60
61         public void setClientSecret(String clientSecret) {
62                 this.clientSecret = clientSecret;
63         }
64
65         public String getCatalogIp() {
66                 return catalogIp;
67         }
68
69         public void setCatalogIp(String catalogIp) {
70                 this.catalogIp = catalogIp;
71         }
72
73         public String getCatalogPort() {
74                 return catalogPort;
75         }
76
77         public void setCatalogPort(String catalogPort) {
78                 this.catalogPort = catalogPort;
79         }
80
81         public String getNslcmIp() {
82                 return nslcmIp;
83         }
84
85         public void setNslcmIp(String nslcmIp) {
86                 this.nslcmIp = nslcmIp;
87         }
88
89         public String getNslcmPort() {
90                 return nslcmPort;
91         }
92
93         public void setNslcmPort(String nslcmPort) {
94                 this.nslcmPort = nslcmPort;
95         }
96         
97         
98 }