Assign control loop domain to rules artifact
[policy/drools-applications.git] / controlloop / common / msb / src / main / java / org / onap / policy / msb / client / MsbServiceManager.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * Copyright 2017-2018 ZTE, Inc. and others.
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
6  * in compliance with the License. You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software distributed under the License
11  * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
12  * or implied. See the License for the specific language governing permissions and limitations under
13  * the License.
14  * ============LICENSE_END=========================================================
15  */
16
17 package org.onap.policy.msb.client;
18
19 import java.io.IOException;
20 import java.io.Serializable;
21
22 import org.onap.msb.sdk.httpclient.msb.MSBServiceClient;
23
24 public class MsbServiceManager implements Serializable {
25     private static final long serialVersionUID = -2517971308551895215L;
26     private MsbServiceFactory factory;
27
28     public MsbServiceManager() throws MsbServiceException, IOException {
29         this.factory = new MsbServiceFactory();
30     }
31
32     public MsbServiceManager(MSBServiceClient msbClient) {
33
34         this.factory = new MsbServiceFactory(msbClient);
35     }
36
37     /**
38      * Get the IP and port of the components registered in the MSB.
39      * 
40      * @param actor AAI or SO or VFC or SNDC
41      * @return the node
42      */
43     public Node getNode(String actor) {
44
45         return factory.getNode(actor);
46     }
47
48     /**
49      * Get the IP and port of the components registered in the MSB.
50      * 
51      * @param serviceName the service name registered in the MSB
52      * @param version the service version registered in the MSB
53      * @return the node
54      */
55     public Node getNode(String serviceName, String version) {
56
57         return factory.getNode(serviceName, version);
58     }
59
60 }