0aa14c711f1e217228396e90f7440b420dcd082d
[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.client.CacheProperties;
26 import org.onap.so.spring.SpringContextHelper;
27 import org.springframework.context.ApplicationContext;
28 import java.net.MalformedURLException;
29 import java.net.URL;
30
31 public class AaiPropertiesImpl implements AAIProperties {
32
33     private final String endpoint;
34     private final String encryptedBasicAuth;
35     private final String encryptionKey;
36     private final String aaiVersion;
37     private final Long readTimeout;
38     private final boolean enableCaching;
39     private final Long cacheMaxAge;
40
41     public AaiPropertiesImpl() {
42         final ApplicationContext context = SpringContextHelper.getAppContext();
43         this.endpoint = context.getEnvironment().getProperty("aai.endpoint");
44         this.encryptedBasicAuth = context.getEnvironment().getProperty("aai.auth");
45         this.encryptionKey = context.getEnvironment().getProperty("mso.key");
46         this.aaiVersion = context.getEnvironment().getProperty("aai.version");
47         this.readTimeout = context.getEnvironment().getProperty("aai.readTimeout", Long.class, new Long(60000));
48         this.enableCaching = context.getEnvironment().getProperty("aai.caching.enabled", Boolean.class, false);
49         this.cacheMaxAge = context.getEnvironment().getProperty("aai.caching.maxAge", Long.class, 60000L);
50     }
51
52     @Override
53     public URL getEndpoint() throws MalformedURLException {
54         return new URL(endpoint);
55     }
56
57     @Override
58     public String getSystemName() {
59         return "MSO";
60     }
61
62     @Override
63     public AAIVersion getDefaultVersion() {
64         for (final AAIVersion version : AAIVersion.values()) {
65             if (version.toString().equalsIgnoreCase(this.aaiVersion)) {
66                 return version;
67             } ;
68
69         }
70         return AAIVersion.LATEST;
71     }
72
73     @Override
74     public String getAuth() {
75         return encryptedBasicAuth;
76     }
77
78     @Override
79     public String getKey() {
80         return encryptionKey;
81     }
82
83     @Override
84     public Long getReadTimeout() {
85         return this.readTimeout;
86     }
87
88     @Override
89     public boolean isCachingEnabled() {
90         return this.enableCaching;
91     }
92
93     @Override
94     public CacheProperties getCacheProperties() {
95         return new AAICacheProperties() {
96             @Override
97             public Long getMaxAge() {
98                 return cacheMaxAge;
99             }
100         };
101     }
102 }