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
9 * http://www.apache.org/licenses/LICENSE-2.0
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.
17 * SPDX-License-Identifier: Apache-2.0
18 * ============LICENSE_END=========================================================
21 package org.onap.so.etsi.nfvo.ns.lcm.bpmn.flows.extclients.aai;
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;
31 public class AaiPropertiesImpl implements AAIProperties {
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;
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);
53 public URL getEndpoint() throws MalformedURLException {
54 return new URL(endpoint);
58 public String getSystemName() {
63 public AAIVersion getDefaultVersion() {
64 for (final AAIVersion version : AAIVersion.values()) {
65 if (version.toString().equalsIgnoreCase(this.aaiVersion)) {
70 return AAIVersion.LATEST;
74 public String getAuth() {
75 return encryptedBasicAuth;
79 public String getKey() {
84 public Long getReadTimeout() {
85 return this.readTimeout;
89 public boolean isCachingEnabled() {
90 return this.enableCaching;
94 public CacheProperties getCacheProperties() {
95 return new AAICacheProperties() {
97 public Long getMaxAge() {