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.spring.SpringContextHelper;
 
  26 import org.springframework.context.ApplicationContext;
 
  27 import java.net.MalformedURLException;
 
  30 public class AaiPropertiesImpl implements AAIProperties {
 
  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;
 
  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));
 
  48     public URL getEndpoint() throws MalformedURLException {
 
  49         return new URL(endpoint);
 
  53     public String getSystemName() {
 
  58     public AAIVersion getDefaultVersion() {
 
  59         for (final AAIVersion version : AAIVersion.values()) {
 
  60             if (version.toString().equalsIgnoreCase(this.aaiVersion)) {
 
  65         return AAIVersion.LATEST;
 
  69     public String getAuth() {
 
  70         return encryptedBasicAuth;
 
  74     public String getKey() {
 
  79     public Long getReadTimeout() {
 
  80         return this.readTimeout;