1492baf1cd3ae20baa5bf5c5f8bcd8440c68c0cc
[so.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
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
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
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=========================================================
19  */
20
21 package org.onap.so.apihandlerinfra.tenantisolation;
22
23 import java.net.MalformedURLException;
24 import java.net.URL;
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;
30
31 public class AaiClientPropertiesImpl implements AAIProperties {
32
33     private String aaiEndpoint;
34     private String auth;
35     private String key;
36     private Long readTimeout;
37     private boolean enableCaching;
38     private Long cacheMaxAge;
39
40     public AaiClientPropertiesImpl() {
41
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);
49     }
50
51     @Override
52     public URL getEndpoint() throws MalformedURLException {
53         return new URL(aaiEndpoint);
54     }
55
56     @Override
57     public String getSystemName() {
58         return "MSO";
59     }
60
61     @Override
62     public AAIVersion getDefaultVersion() {
63         return AAIVersion.LATEST;
64     }
65
66     @Override
67     public String getAuth() {
68         return this.auth;
69     }
70
71     @Override
72     public String getKey() {
73         return this.key;
74     }
75
76     @Override
77     public Long getReadTimeout() {
78         return this.readTimeout;
79     }
80
81     @Override
82     public boolean isCachingEnabled() {
83         return this.enableCaching;
84     }
85
86     @Override
87     public CacheProperties getCacheProperties() {
88         return new AAICacheProperties() {
89             @Override
90             public Long getMaxAge() {
91                 return cacheMaxAge;
92             }
93         };
94     }
95 }