Changes for checkstyle 8.32
[policy/apex-pdp.git] / core / core-infrastructure / src / main / java / org / onap / policy / apex / core / infrastructure / messaging / MessagingServiceFactory.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2016-2018 Ericsson. All rights reserved.
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.policy.apex.core.infrastructure.messaging;
22
23 import java.net.InetSocketAddress;
24 import java.net.URI;
25 import org.onap.policy.apex.core.infrastructure.messaging.impl.ws.client.MessagingClient;
26 import org.onap.policy.apex.core.infrastructure.messaging.impl.ws.server.MessageServerImpl;
27
28 /**
29  * A factory class to create a "server" or "client" type Messaging Service.
30  *
31  * @author Sajeevan Achuthan (sajeevan.achuthan@ericsson.com)
32  * @param <M> the generic type of message to be handled by this messaging service
33  */
34 public class MessagingServiceFactory<M> {
35
36     /**
37      * Create a web socket server instance and returns to the caller.
38      *
39      * @param address the address of the server machine
40      * @return the messaging service
41      */
42     public MessagingService<M> createServer(final InetSocketAddress address) {
43         return new MessageServerImpl<>(address);
44     }
45
46     /**
47      * Create a web socket client instance and returns to the caller.
48      *
49      * @param uri the URI of the server to connect to
50      * @return an instance of {@link MessagingService}
51      */
52     public MessagingService<M> createClient(final URI uri) {
53         if (uri == null) {
54             throw new IllegalArgumentException("URI cannot be null");
55         }
56         return new MessagingClient<>(uri);
57     }
58 }