Remove Bierman02 support from sal-rest-docgen
[netconf.git] / restconf / sal-rest-docgen / src / main / resources / OSGI-INF / blueprint / blueprint.xml
index 7d1c2fe77105b1df480daba8f5063c1c4d2ec1d1..439099bbbfb7cda5d548d9d514c226d4c3b2d945 100644 (file)
@@ -7,45 +7,29 @@ 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"
-           xmlns:odl="http://opendaylight.org/xmlns/blueprint/v1.0.0"
-           odl:use-default-for-reference-types="true">
-
+<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="mountPointDraft02" class="org.opendaylight.netconf.sal.rest.doc.impl.MountPointSwaggerGeneratorDraft02"
-            destroy-method="close">
-        <argument ref="schemaService" />
-        <argument ref="domMountPointService" />
-    </bean>
-
     <bean id="mountPointRFC8040" class="org.opendaylight.netconf.sal.rest.doc.impl.MountPointSwaggerGeneratorRFC8040"
             destroy-method="close">
         <argument ref="schemaService" />
         <argument ref="domMountPointService" />
     </bean>
 
-    <bean id="apiDocDraftO2" class="org.opendaylight.netconf.sal.rest.doc.impl.ApiDocGeneratorDraftO2">
-        <argument ref="schemaService" />
-    </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="apiDocDraftO2" />
         <argument ref="apiDocRFC8040" />
     </bean>
 
     <bean id="apiDocService" class="org.opendaylight.netconf.sal.rest.doc.impl.ApiDocServiceImpl">
-        <argument ref="mountPointDraft02" />
         <argument ref="mountPointRFC8040" />
-        <argument ref="apiDocDraftO2" />
         <argument ref="apiDocRFC8040" />
         <argument ref="allModulesDoc" />
     </bean>
@@ -60,5 +44,5 @@ and is available at http://www.eclipse.org/legal/epl-v10.html
         <argument ref="webContextSecurer"/>
         <argument ref="servletSupport"/>
         <argument ref="apiDocApplication"/>
-  </bean>
+    </bean>
 </blueprint>