Merge "Reorder modifiers"
[so.git] / common / src / main / java / org / openecomp / mso / client / grm / GRMRestInvoker.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.openecomp.mso.client.grm;
22
23 import java.net.URI;
24 import java.util.Base64;
25
26 import javax.ws.rs.core.UriBuilder;
27 import org.openecomp.mso.client.RestPropertiesLoader;
28 import org.openecomp.mso.client.policy.RestClient;
29
30 public class GRMRestInvoker {
31         
32         private final RestClient client;
33         private final GRMProperties properties;
34         
35         public GRMRestInvoker(GRMAction action) {
36                 GRMProperties props = GRMPropertiesLoader.getInstance().getImpl();
37                 if (props == null) {
38                         props = new GRMDefaultPropertiesImpl();
39                 }
40                 this.properties = props;
41                 this.client = new GRMRestClient(this.properties, this.createURI(action), this.properties.getUsername(), this.decode(this.properties.getPassword()));
42         }
43         
44         private URI createURI(GRMAction action) {
45                 return UriBuilder.fromUri("/GRMLWPService")
46                                 .path(this.properties.getDefaultVersion())
47                                 .path("serviceEndPoint")
48                                 .path(action.getAction())
49                                 .build();
50         }
51         
52         private String decode(String cred) {
53                 try {
54                         return new String(Base64.getDecoder().decode(cred.getBytes()));
55                 } 
56                 catch(IllegalArgumentException iae) {
57                         return cred;
58                 }
59         }
60         
61         private RestClient getClient() {
62                 return this.client;
63         }
64         
65         public void post(Object obj) {
66                 getClient().post(obj);
67         }
68         
69         public <T> T post(Object obj, Class<T> resultClass) {
70                 return getClient().post(obj, resultClass);
71         }
72         
73 }