Removing jackson to mitigate cve-2017-4995
[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 com.google.gson.Gson;
19 import com.nokia.cbam.lcn.v32.JSON;
20 import java.util.ArrayList;
21 import java.util.Collection;
22 import org.springframework.boot.autoconfigure.http.HttpMessageConverters;
23 import org.springframework.context.annotation.Bean;
24 import org.springframework.context.annotation.Configuration;
25 import org.springframework.http.converter.HttpMessageConverter;
26 import org.springframework.http.converter.json.GsonHttpMessageConverter;
27
28 /**
29  * Responsible for configuring the raw REST input conversion
30  */
31 @Configuration
32 public class RealConfig {
33
34     /**
35      * Responsible for registering the RAW to POJO message converters.
36      * This is required since the generated POJOs are annotated with google GSON
37      * compatible annotations Jackson can not deserialize the stream.
38      *
39      * @return the message converter
40      */
41     @Bean
42     public HttpMessageConverters customConverters() {
43         Collection<HttpMessageConverter<?>> messageConverters = new ArrayList<>();
44         Gson gson = new JSON().getGson();
45         GsonHttpMessageConverter gsonHttpMessageConverter = new GsonHttpMessageConverter(gson);
46         messageConverters.add(gsonHttpMessageConverter);
47         return new HttpMessageConverters(true, messageConverters);
48     }
49 }