910d5fa75cfd6a6379ac400c50696ef052460344
[so.git] /
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     private final Long readTimeout;
37
38     public AaiPropertiesImpl() {
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         this.readTimeout = context.getEnvironment().getProperty("aai.readTimeout", Long.class, new Long(60000));
45     }
46
47     @Override
48     public URL getEndpoint() throws MalformedURLException {
49         return new URL(endpoint);
50     }
51
52     @Override
53     public String getSystemName() {
54         return "MSO";
55     }
56
57     @Override
58     public AAIVersion getDefaultVersion() {
59         for (final AAIVersion version : AAIVersion.values()) {
60             if (version.toString().equalsIgnoreCase(this.aaiVersion)) {
61                 return version;
62             } ;
63
64         }
65         return AAIVersion.LATEST;
66     }
67
68     @Override
69     public String getAuth() {
70         return encryptedBasicAuth;
71     }
72
73     @Override
74     public String getKey() {
75         return encryptionKey;
76     }
77
78     @Override
79     public Long getReadTimeout() {
80         return this.readTimeout;
81     }
82 }