f9b2e394c0a612022ac84f99e1344a71c386ecb6
[vfc/nfvo/driver/vnfm/svnfm.git] / nokiav2 / driver / src / main / java / org / onap / vfc / nfvo / driver / vnfm / svnfm / nokia / spring / RealConfig.java
1 /*
2  * Copyright 2016-2017, Nokia Corporation
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * 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
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.spring;
17
18 import org.springframework.boot.autoconfigure.http.HttpMessageConverters;
19 import org.springframework.context.annotation.Bean;
20 import org.springframework.context.annotation.Configuration;
21 import org.springframework.http.converter.HttpMessageConverter;
22 import org.springframework.http.converter.json.GsonHttpMessageConverter;
23
24 import java.util.ArrayList;
25 import java.util.Collection;
26
27 /**
28  * Responsible for configuring the raw REST input conversion
29  */
30 @Configuration
31 public class RealConfig {
32
33     /**
34      * Responsible for registering the RAW to POJO message converters.
35      * This is required since the generated POJOs are annotated with google GSON
36      * compatible annotations Jackson can not deserialize the stream.
37      *
38      * @return the message converter
39      */
40     @Bean
41     public HttpMessageConverters customConverters() {
42         Collection<HttpMessageConverter<?>> messageConverters = new ArrayList<>();
43         GsonHttpMessageConverter gsonHttpMessageConverter = new GsonHttpMessageConverter();
44         messageConverters.add(gsonHttpMessageConverter);
45         return new HttpMessageConverters(true, messageConverters);
46     }
47 }