Fix BBS integration issue
[so.git] / adapters / etsi-sol003-adapter / etsi-sol003-pkgm / etsi-sol003-pkgm-adapter / src / main / java / org / onap / so / adapters / etsisol003adapter / pkgm / extclients / AbstractServiceProviderConfiguration.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019 Nordix Foundation.
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.so.adapters.etsisol003adapter.pkgm.extclients;
22
23 import java.time.LocalDateTime;
24 import java.util.Iterator;
25 import org.onap.so.adapters.etsisol003adapter.pkgm.JSON;
26 import org.onap.so.adapters.etsisol003adapter.pkgm.rest.EtsiSubscriptionNotificationController;
27 import org.springframework.http.converter.HttpMessageConverter;
28 import org.springframework.http.converter.json.GsonHttpMessageConverter;
29 import org.springframework.http.converter.json.MappingJackson2HttpMessageConverter;
30 import org.springframework.web.client.RestTemplate;
31 import org.threeten.bp.OffsetDateTime;
32 import com.google.gson.Gson;
33
34 /**
35  * A base class that can be extended by classes for configuring HttpRestServiceProvider classes. Provides common methods
36  * that will be useful to some such classes.
37  *
38  * @author gareth.roper@est.tech
39  */
40 public abstract class AbstractServiceProviderConfiguration {
41     private final JSON.OffsetDateTimeTypeAdapter offsetDateTimeTypeAdapter = new JSON.OffsetDateTimeTypeAdapter();
42
43     public void setGsonMessageConverter(final RestTemplate restTemplate) {
44         final Iterator<HttpMessageConverter<?>> iterator = restTemplate.getMessageConverters().iterator();
45         while (iterator.hasNext()) {
46             if (iterator.next() instanceof MappingJackson2HttpMessageConverter) {
47                 iterator.remove();
48             }
49         }
50         final Gson gson = JSON.createGson().registerTypeAdapter(OffsetDateTime.class, offsetDateTimeTypeAdapter)
51                 .registerTypeAdapter(LocalDateTime.class,
52                         new EtsiSubscriptionNotificationController.LocalDateTimeTypeAdapter())
53                 .create();
54         restTemplate.getMessageConverters().add(new GsonHttpMessageConverter(gson));
55     }
56 }