Implementing Create NS
[so.git] / so-etsi-nfvo / so-etsi-nfvo-ns-lcm / so-etsi-nfvo-ns-lcm-bpmn-flows / src / main / java / org / onap / so / etsi / nfvo / ns / lcm / bpmn / flows / extclients / aai / AaiPropertiesImpl.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2020 Nordix Foundation.
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.so.etsi.nfvo.ns.lcm.bpmn.flows.extclients.aai;
22
23 import org.onap.aaiclient.client.aai.AAIProperties;
24 import org.onap.aaiclient.client.aai.AAIVersion;
25 import org.onap.so.spring.SpringContextHelper;
26 import org.springframework.context.ApplicationContext;
27 import java.net.MalformedURLException;
28 import java.net.URL;
29
30 public class AaiPropertiesImpl implements AAIProperties {
31
32     private final String endpoint;
33     private final String encryptedBasicAuth;
34     private final String encryptionKey;
35     private final String aaiVersion;
36
37     public AaiPropertiesImpl() {
38
39         final ApplicationContext context = SpringContextHelper.getAppContext();
40         this.endpoint = context.getEnvironment().getProperty("aai.endpoint");
41         this.encryptedBasicAuth = context.getEnvironment().getProperty("aai.auth");
42         this.encryptionKey = context.getEnvironment().getProperty("mso.key");
43         this.aaiVersion = context.getEnvironment().getProperty("aai.version");
44     }
45
46     @Override
47     public URL getEndpoint() throws MalformedURLException {
48         return new URL(endpoint);
49     }
50
51     @Override
52     public String getSystemName() {
53         return "MSO";
54     }
55
56     @Override
57     public AAIVersion getDefaultVersion() {
58         for (final AAIVersion version : AAIVersion.values()) {
59             if (version.toString().equalsIgnoreCase(this.aaiVersion)) {
60                 return version;
61             } ;
62
63         }
64         return AAIVersion.LATEST;
65     }
66
67     @Override
68     public String getAuth() {
69         return encryptedBasicAuth;
70     }
71
72     @Override
73     public String getKey() {
74         return encryptionKey;
75     }
76 }