2 * ============LICENSE_START=======================================================
4 * ================================================================================
5 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6 * ================================================================================
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
11 * http://www.apache.org/licenses/LICENSE-2.0
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 * ============LICENSE_END=========================================================
21 package org.onap.so.apihandlerinfra.tenantisolation;
23 import java.net.MalformedURLException;
25 import org.onap.aaiclient.client.aai.AAIProperties;
26 import org.onap.aaiclient.client.aai.AAIVersion;
27 import org.onap.so.client.CacheProperties;
28 import org.onap.so.spring.SpringContextHelper;
29 import org.springframework.context.ApplicationContext;
31 public class AaiClientPropertiesImpl implements AAIProperties {
33 private String aaiEndpoint;
36 private Long readTimeout;
37 private boolean enableCaching;
38 private Long cacheMaxAge;
40 public AaiClientPropertiesImpl() {
42 ApplicationContext context = SpringContextHelper.getAppContext();
43 aaiEndpoint = context.getEnvironment().getProperty("mso.aai.endpoint");
44 this.auth = context.getEnvironment().getProperty("aai.auth");
45 this.key = context.getEnvironment().getProperty("mso.msoKey");
46 this.readTimeout = context.getEnvironment().getProperty("aai.readTimeout", Long.class, new Long(60000));
47 this.enableCaching = context.getEnvironment().getProperty("aai.caching.enabled", Boolean.class, false);
48 this.cacheMaxAge = context.getEnvironment().getProperty("aai.caching.maxAge", Long.class, 60000L);
52 public URL getEndpoint() throws MalformedURLException {
53 return new URL(aaiEndpoint);
57 public String getSystemName() {
62 public AAIVersion getDefaultVersion() {
63 return AAIVersion.LATEST;
67 public String getAuth() {
72 public String getKey() {
77 public Long getReadTimeout() {
78 return this.readTimeout;
82 public boolean isCachingEnabled() {
83 return this.enableCaching;
87 public CacheProperties getCacheProperties() {
88 return new AAICacheProperties() {
90 public Long getMaxAge() {