X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-rest-connector%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fsal%2Frest%2Fimpl%2FRestconfApplication.java;h=52cd96b53afcdf8fd59c9cd204a7f7f7e6a57f78;hb=2890d49fb524bf060f7e95c83bc025df0b6980ed;hp=6166a084c19c1e9e80480c2d3745e04bc9b28eca;hpb=94d0d20b41d64bb6696c2a573ec367fcfddc44e9;p=controller.git diff --git a/opendaylight/md-sal/sal-rest-connector/src/main/java/org/opendaylight/controller/sal/rest/impl/RestconfApplication.java b/opendaylight/md-sal/sal-rest-connector/src/main/java/org/opendaylight/controller/sal/rest/impl/RestconfApplication.java index 6166a084c1..52cd96b53a 100644 --- a/opendaylight/md-sal/sal-rest-connector/src/main/java/org/opendaylight/controller/sal/rest/impl/RestconfApplication.java +++ b/opendaylight/md-sal/sal-rest-connector/src/main/java/org/opendaylight/controller/sal/rest/impl/RestconfApplication.java @@ -7,32 +7,50 @@ */ package org.opendaylight.controller.sal.rest.impl; +import com.google.common.collect.ImmutableSet; import java.util.HashSet; import java.util.Set; - import javax.ws.rs.core.Application; - +import org.opendaylight.controller.md.sal.rest.schema.SchemaExportContentYangBodyWriter; +import org.opendaylight.controller.md.sal.rest.schema.SchemaExportContentYinBodyWriter; +import org.opendaylight.controller.md.sal.rest.schema.SchemaRetrievalServiceImpl; import org.opendaylight.controller.sal.restconf.impl.BrokerFacade; import org.opendaylight.controller.sal.restconf.impl.ControllerContext; import org.opendaylight.controller.sal.restconf.impl.RestconfImpl; +import org.opendaylight.controller.sal.restconf.impl.StatisticsRestconfServiceWrapper; public class RestconfApplication extends Application { + @Override + public Set> getClasses() { + return ImmutableSet.> builder() + .add(RestconfDocumentedExceptionMapper.class) + .add(XmlNormalizedNodeBodyReader.class) + .add(JsonNormalizedNodeBodyReader.class) + .add(NormalizedNodeJsonBodyWriter.class) + .add(NormalizedNodeXmlBodyWriter.class) + .add(SchemaExportContentYinBodyWriter.class) + .add(SchemaExportContentYangBodyWriter.class) + .build(); + } + @Override public Set getSingletons() { - Set singletons = new HashSet<>(); - ControllerContext controllerContext = ControllerContext.getInstance(); - BrokerFacade brokerFacade = BrokerFacade.getInstance(); - RestconfImpl restconfImpl = RestconfImpl.getInstance(); + final Set singletons = new HashSet<>(); + final ControllerContext controllerContext = ControllerContext.getInstance(); + final BrokerFacade brokerFacade = BrokerFacade.getInstance(); + final RestconfImpl restconfImpl = RestconfImpl.getInstance(); + final SchemaRetrievalServiceImpl schemaRetrieval = new SchemaRetrievalServiceImpl(controllerContext); restconfImpl.setBroker(brokerFacade); restconfImpl.setControllerContext(controllerContext); singletons.add(controllerContext); singletons.add(brokerFacade); - singletons.add(restconfImpl); - singletons.add(XmlToCompositeNodeProvider.INSTANCE); - singletons.add(StructuredDataToXmlProvider.INSTANCE); - singletons.add(JsonToCompositeNodeProvider.INSTANCE); - singletons.add(StructuredDataToJsonProvider.INSTANCE); + singletons.add(schemaRetrieval); + singletons.add(new RestconfCompositeWrapper(StatisticsRestconfServiceWrapper.getInstance(), schemaRetrieval)); +// singletons.add(StructuredDataToXmlProvider.INSTANCE); +// singletons.add(StructuredDataToJsonProvider.INSTANCE); +// singletons.add(JsonToCompositeNodeProvider.INSTANCE); +// singletons.add(XmlToCompositeNodeProvider.INSTANCE); return singletons; }