Convert sal-rest-docgen to OSGI DS
[netconf.git] / restconf / sal-rest-docgen / src / main / resources / OSGI-INF / blueprint / blueprint.xml
diff --git a/restconf/sal-rest-docgen/src/main/resources/OSGI-INF/blueprint/blueprint.xml b/restconf/sal-rest-docgen/src/main/resources/OSGI-INF/blueprint/blueprint.xml
deleted file mode 100644 (file)
index 439099b..0000000
+++ /dev/null
@@ -1,48 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!-- vi: set et smarttab sw=4 tabstop=4: -->
-<!--
-Copyright © 2017 Inocybe Technologies and others. All rights reserved.
-
-This program and the accompanying materials are made available under the
-terms of the Eclipse Public License v1.0 which accompanies this distribution,
-and is available at http://www.eclipse.org/legal/epl-v10.html
--->
-<blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0">
-    <reference id="schemaService" interface="org.opendaylight.mdsal.dom.api.DOMSchemaService"/>
-    <reference id="domMountPointService" interface="org.opendaylight.mdsal.dom.api.DOMMountPointService"/>
-    <reference id="webServer" interface="org.opendaylight.aaa.web.WebServer"/>
-    <reference id="webContextSecurer" interface="org.opendaylight.aaa.web.WebContextSecurer"/>
-    <reference id="servletSupport" interface="org.opendaylight.aaa.web.servlet.ServletSupport" />
-
-    <bean id="mountPointRFC8040" class="org.opendaylight.netconf.sal.rest.doc.impl.MountPointSwaggerGeneratorRFC8040"
-            destroy-method="close">
-        <argument ref="schemaService" />
-        <argument ref="domMountPointService" />
-    </bean>
-
-    <bean id="apiDocRFC8040" class="org.opendaylight.netconf.sal.rest.doc.impl.ApiDocGeneratorRFC8040">
-        <argument ref="schemaService" />
-    </bean>
-
-    <bean id="allModulesDoc" class="org.opendaylight.netconf.sal.rest.doc.impl.AllModulesDocGenerator">
-        <argument ref="apiDocRFC8040" />
-    </bean>
-
-    <bean id="apiDocService" class="org.opendaylight.netconf.sal.rest.doc.impl.ApiDocServiceImpl">
-        <argument ref="mountPointRFC8040" />
-        <argument ref="apiDocRFC8040" />
-        <argument ref="allModulesDoc" />
-    </bean>
-
-    <bean id="apiDocApplication" class="org.opendaylight.netconf.sal.rest.doc.jaxrs.ApiDocApplication">
-        <argument ref="apiDocService" />
-    </bean>
-
-    <bean id="webInitializer" class="org.opendaylight.netconf.sal.rest.doc.jaxrs.WebInitializer"
-            destroy-method="close">
-        <argument ref="webServer"/>
-        <argument ref="webContextSecurer"/>
-        <argument ref="servletSupport"/>
-        <argument ref="apiDocApplication"/>
-    </bean>
-</blueprint>