Containerization feature of SO
[so.git] / common / src / main / java / org / onap / so / client / grm / GRMClient.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.client.grm;
22
23 import org.onap.so.client.grm.beans.ServiceEndPointList;
24 import org.onap.so.client.grm.beans.ServiceEndPointLookup;
25 import org.onap.so.client.grm.beans.ServiceEndPointLookupRequest;
26 import org.onap.so.client.grm.beans.ServiceEndPointRequest;
27 import org.onap.so.client.grm.beans.VersionLookup;
28 import org.onap.so.client.grm.exceptions.GRMClientCallFailed;
29
30 public class GRMClient {
31
32         public String findRunningServicesAsString(String name, int majorVersion, String env) throws Exception {
33                 
34                 ServiceEndPointLookupRequest request = buildServiceEndPointlookupRequest(name, majorVersion, env);              
35                 try {
36                         GRMRestInvoker invoker = this.getInvoker(GRMAction.FIND_RUNNING);
37                         return invoker.post(request, String.class);
38                 }
39                 catch(Exception e) {
40                         throw new GRMClientCallFailed("Call to GRM findRunning failed: " + e.getMessage(), e);
41                 }
42         }
43         
44         public ServiceEndPointList findRunningServices(String name, int majorVersion, String env) throws Exception {
45                 
46                 ServiceEndPointLookupRequest request = buildServiceEndPointlookupRequest(name, majorVersion, env);
47                 try {
48                         GRMRestInvoker invoker = this.getInvoker(GRMAction.FIND_RUNNING);
49                         return invoker.post(request, ServiceEndPointList.class);
50                 }
51                 catch(Exception e) {
52                         throw new GRMClientCallFailed("Call to GRM findRunning failed: " + e.getMessage(), e);
53                 }
54         }
55         
56         protected ServiceEndPointLookupRequest buildServiceEndPointlookupRequest(String name, int majorVersion, String env) {
57                 VersionLookup version = new VersionLookup();
58                 version.setMajor(majorVersion);
59                 
60                 ServiceEndPointLookup endpoint = new ServiceEndPointLookup();
61                 endpoint.setName(name);
62                 endpoint.setVersion(version);
63                 
64                 ServiceEndPointLookupRequest request = new ServiceEndPointLookupRequest();
65                 request.setServiceEndPoint(endpoint);
66                 request.setEnv(env);
67                 return request;
68         }
69         
70         public void addServiceEndPoint(ServiceEndPointRequest request) throws Exception {
71                 try {
72                         GRMRestInvoker invoker = this.getInvoker(GRMAction.ADD);
73                         invoker.post(request);
74                 }
75                 catch(Exception e) {
76                         throw new GRMClientCallFailed("Call to GRM addServiceEndPoint failed: " + e.getMessage(), e);
77                 }
78         }
79         
80         protected GRMRestInvoker getInvoker(GRMAction action) {
81                 return new GRMRestInvoker(action);
82         }
83 }