X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=restconf%2Frestconf-nb-rfc8040%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Frestconf%2Fnb%2Frfc8040%2FRestconfApplication.java;fp=restconf%2Frestconf-nb-rfc8040%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Frestconf%2Fnb%2Frfc8040%2FRestconfApplication.java;h=76b560c296196d7f3811e7111304d2b335b73272;hb=73bc92edf590d470c6f5c7bfde33bdd79c572b6a;hp=c8c328b0d2a7bf665070b3cf4628bbcc3e216e4f;hpb=c4aa5392a3c307e87fb334520cd5692406a89ee2;p=netconf.git diff --git a/restconf/restconf-nb-rfc8040/src/main/java/org/opendaylight/restconf/nb/rfc8040/RestconfApplication.java b/restconf/restconf-nb-rfc8040/src/main/java/org/opendaylight/restconf/nb/rfc8040/RestconfApplication.java index c8c328b0d2..76b560c296 100644 --- a/restconf/restconf-nb-rfc8040/src/main/java/org/opendaylight/restconf/nb/rfc8040/RestconfApplication.java +++ b/restconf/restconf-nb-rfc8040/src/main/java/org/opendaylight/restconf/nb/rfc8040/RestconfApplication.java @@ -23,7 +23,7 @@ import org.opendaylight.restconf.nb.rfc8040.jersey.providers.patch.PatchXmlBodyW import org.opendaylight.restconf.nb.rfc8040.jersey.providers.patch.XmlToPatchBodyReader; import org.opendaylight.restconf.nb.rfc8040.jersey.providers.schema.SchemaExportContentYangBodyWriter; import org.opendaylight.restconf.nb.rfc8040.jersey.providers.schema.SchemaExportContentYinBodyWriter; -import org.opendaylight.restconf.nb.rfc8040.services.wrapper.ServicesWrapperImpl; +import org.opendaylight.restconf.nb.rfc8040.services.wrapper.ServicesWrapper; public class RestconfApplication extends Application { private final SchemaContextHandler schemaContextHandler = SchemaContextHandler.instance(); @@ -41,7 +41,7 @@ public class RestconfApplication extends Application { @Override public Set getSingletons() { final Set singletons = new HashSet<>(); - singletons.add(ServicesWrapperImpl.getInstance()); + singletons.add(ServicesWrapper.getInstance()); singletons.add(new JsonNormalizedNodeBodyReader(schemaContextHandler, mountPointServiceHandler)); singletons.add(new JsonToPatchBodyReader(schemaContextHandler, mountPointServiceHandler)); singletons.add(new XmlNormalizedNodeBodyReader(schemaContextHandler, mountPointServiceHandler));