X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;ds=sidebyside;f=opendaylight%2Fnorthbound%2Ftopology%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Ftopology%2Fnorthbound%2FTopologyNorthboundRSApplication.java;h=992cf6ac524bc02d770a387b866065f1454e2552;hb=74c92401812b8e77e8ceade6e8714d0fc1c35d3a;hp=299bfcd2246b1514982d88f4868a372d1bb09484;hpb=29f7cfb54b580928c7feac63abce028a7014b0d5;p=controller.git diff --git a/opendaylight/northbound/topology/src/main/java/org/opendaylight/controller/topology/northbound/TopologyNorthboundRSApplication.java b/opendaylight/northbound/topology/src/main/java/org/opendaylight/controller/topology/northbound/TopologyNorthboundRSApplication.java index 299bfcd224..992cf6ac52 100644 --- a/opendaylight/northbound/topology/src/main/java/org/opendaylight/controller/topology/northbound/TopologyNorthboundRSApplication.java +++ b/opendaylight/northbound/topology/src/main/java/org/opendaylight/controller/topology/northbound/TopologyNorthboundRSApplication.java @@ -13,6 +13,8 @@ import java.util.HashSet; import java.util.Set; import javax.ws.rs.core.Application; +import org.codehaus.jackson.jaxrs.JacksonJaxbJsonProvider; + /** * Instance of javax.ws.rs.core.Application used to return the classes * that will be instantiated for JAXRS processing, this is necessary @@ -25,6 +27,7 @@ public class TopologyNorthboundRSApplication extends Application { public Set> getClasses() { Set> classes = new HashSet>(); classes.add(TopologyNorthboundJAXRS.class); + classes.add(JacksonJaxbJsonProvider.class); return classes; } }