3c27da10601c5ce9a19c567e3798a2f00c4cd30d
[dcaegen2/services/sdk.git] / rest-services / dmaap-client / src / main / java / org / onap / dcaegen2 / services / sdk / rest / services / dmaap / client / api / DmaapClientFactory.java
1 /*
2  * ============LICENSE_START====================================
3  * DCAEGEN2-SERVICES-SDK
4  * =========================================================
5  * Copyright (C) 2019 Nokia. 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 package org.onap.dcaegen2.services.sdk.rest.services.dmaap.client.api;
21
22 import org.jetbrains.annotations.NotNull;
23 import org.onap.dcaegen2.services.sdk.rest.services.adapters.http.RxHttpClient;
24 import org.onap.dcaegen2.services.sdk.rest.services.adapters.http.RxHttpClientFactory;
25 import org.onap.dcaegen2.services.sdk.rest.services.dmaap.client.impl.MessageRouterPublisherImpl;
26 import org.onap.dcaegen2.services.sdk.rest.services.dmaap.client.impl.MessageRouterSubscriberImpl;
27 import org.onap.dcaegen2.services.sdk.rest.services.dmaap.client.model.config.DmaapClientConfiguration;
28 import org.onap.dcaegen2.services.sdk.rest.services.dmaap.client.model.config.MessageRouterPublisherConfig;
29 import org.onap.dcaegen2.services.sdk.rest.services.dmaap.client.model.config.MessageRouterSubscriberConfig;
30
31 /**
32  *
33  * @author <a href="mailto:piotr.jaszczyk@nokia.com">Piotr Jaszczyk</a>
34  * @since 1.1.4
35  */
36 public final class DmaapClientFactory {
37
38     private DmaapClientFactory() {
39     }
40
41     public static @NotNull MessageRouterPublisher createMessageRouterPublisher(
42             @NotNull MessageRouterPublisherConfig clientConfiguration) {
43
44         return new MessageRouterPublisherImpl(
45                 createHttpClient(clientConfiguration),
46                 clientConfiguration.maxBatchSize(),
47                 clientConfiguration.maxBatchDuration());
48     }
49
50     public static @NotNull MessageRouterSubscriber createMessageRouterSubscriber(
51             @NotNull MessageRouterSubscriberConfig clientConfiguration) {
52         return new MessageRouterSubscriberImpl(
53                 createHttpClient(clientConfiguration),
54                 clientConfiguration.gsonInstance());
55     }
56
57     private static @NotNull RxHttpClient createHttpClient(DmaapClientConfiguration config) {
58         return config.securityKeys() == null
59                 ? RxHttpClientFactory.create()
60                 : RxHttpClientFactory.create(config.securityKeys());
61     }
62 }