Enhanced List Level flow with backward support
[so.git] / mso-api-handlers / mso-api-handler-infra / src / main / java / org / onap / so / apihandlerinfra / tenantisolation / GrmClientPropertiesImpl.java
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 javax.ws.rs.core.MediaType;
26 import org.onap.so.client.grm.GRMProperties;
27 import org.onap.so.spring.SpringContextHelper;
28 import org.springframework.context.ApplicationContext;
29
30 public class GrmClientPropertiesImpl implements GRMProperties {
31
32     private String grmEndpoint;
33     private String grmAuth;
34     private String grmKey;
35
36     public GrmClientPropertiesImpl() {
37         ApplicationContext context = SpringContextHelper.getAppContext();
38         grmEndpoint = context.getEnvironment().getProperty("mso.grm.endpoint");
39         grmAuth = context.getEnvironment().getProperty("mso.grm.auth");
40         grmKey = context.getEnvironment().getProperty("mso.msoKey");
41     }
42
43     @Override
44     public URL getEndpoint() throws MalformedURLException {
45         return new URL(grmEndpoint);
46     }
47
48     @Override
49     public String getSystemName() {
50         return "MSO";
51     }
52
53     @Override
54     public String getDefaultVersion() {
55         return "v1";
56     }
57
58     @Override
59     public String getAuth() {
60         return grmAuth;
61     }
62
63     @Override
64     public String getKey() {
65         return grmKey;
66     }
67
68     @Override
69     public String getContentType() {
70         return MediaType.APPLICATION_JSON;
71     }
72
73 }