Add deployment part
[vfc/nfvo/driver/vnfm/svnfm.git] / nokia / vnfmdriver / vfcadaptorservice / vfcadaptor / src / main / java / org / onap / vfc / nfvo / driver / vnfm / svnfm / 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 org.onap.vfc.nfvo.driver.vnfm.svnfm.common.bo;
18
19 import org.springframework.beans.factory.annotation.Value;
20 import org.springframework.stereotype.Component;
21
22 @Component
23 public class AdaptorEnv {
24         @Value("${nslcmApiUriFront}")
25         private String nslcmApiUriFront;
26         @Value("${catalogApiUriFront}")
27         private String catalogApiUriFront;
28         @Value("${cbamApiUriFront}")
29         private String cbamApiUriFront;
30         
31         //for retrieving token from CBAM
32         @Value("${grantType}")
33         private String grantType;
34         @Value("${clientId}")
35         private String clientId;
36         @Value("${clientSecret}")
37         private String clientSecret;
38         
39         public String getNslcmApiUriFront() {
40                 return nslcmApiUriFront;
41         }
42         public void setNslcmApiUriFront(String nslcmApiUriFront) {
43                 this.nslcmApiUriFront = nslcmApiUriFront;
44         }
45         public String getCatalogApiUriFront() {
46                 return catalogApiUriFront;
47         }
48         public void setCatalogApiUriFront(String catalogApiUriFront) {
49                 this.catalogApiUriFront = catalogApiUriFront;
50         }
51         public String getCbamApiUriFront() {
52                 return cbamApiUriFront;
53         }
54         public void setCbamApiUriFront(String cbamApiUriFront) {
55                 this.cbamApiUriFront = cbamApiUriFront;
56         }
57         public String getGrantType() {
58                 return grantType;
59         }
60         public void setGrantType(String grantType) {
61                 this.grantType = grantType;
62         }
63         public String getClientId() {
64                 return clientId;
65         }
66         public void setClientId(String clientId) {
67                 this.clientId = clientId;
68         }
69         public String getClientSecret() {
70                 return clientSecret;
71         }
72         public void setClientSecret(String clientSecret) {
73                 this.clientSecret = clientSecret;
74         }
75         
76 }