diff options
author | sebdet <sebastien.determe@intl.att.com> | 2019-02-15 15:30:05 +0100 |
---|---|---|
committer | sebdet <sebastien.determe@intl.att.com> | 2019-02-15 15:32:37 +0100 |
commit | 00109a0ca24bf94d6f97a567c49e0ba945739f5c (patch) | |
tree | 71715ac222c9fe578e663b426ab069cc2f326ebb /src | |
parent | 2f468e4472e56ec56cb9823d188a564749b93457 (diff) |
Remove remaining Jackson
Remove jackson import as jackson shoul dbe removed
Issue-ID: CLAMP-292
Change-Id: Ie638e40b278e747caf5efc30bf6f32bb489c758b
Signed-off-by: sebdet <sebastien.determe@intl.att.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/main/java/org/onap/clamp/clds/config/CamelConfiguration.java | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/src/main/java/org/onap/clamp/clds/config/CamelConfiguration.java b/src/main/java/org/onap/clamp/clds/config/CamelConfiguration.java index c80fd0ec..45c945c4 100644 --- a/src/main/java/org/onap/clamp/clds/config/CamelConfiguration.java +++ b/src/main/java/org/onap/clamp/clds/config/CamelConfiguration.java @@ -31,13 +31,12 @@ public class CamelConfiguration extends RouteBuilder { @Override public void configure() { - restConfiguration().component("servlet").bindingMode(RestBindingMode.json) - .dataFormatProperty("prettyPrint", "true")//.enableCORS(true) - // turn on swagger api-doc - .apiContextPath("api-doc") - .apiVendorExtension(true) - .apiProperty("api.title", "Clamp Rest API").apiProperty("api.version", ClampVersioning.getCldsVersionFromProps()) - .apiProperty("base.path", "/restservices/clds/v1/"); - //.apiProperty("cors", "true"); + restConfiguration().component("servlet").bindingMode(RestBindingMode.json).jsonDataFormat("json-gson") + .dataFormatProperty("prettyPrint", "true")// .enableCORS(true) + // turn on swagger api-doc + .apiContextPath("api-doc").apiVendorExtension(true).apiProperty("api.title", "Clamp Rest API") + .apiProperty("api.version", ClampVersioning.getCldsVersionFromProps()) + .apiProperty("base.path", "/restservices/clds/v1/"); + // .apiProperty("cors", "true"); } } |