Delete restconf
[controller.git] / opendaylight / md-sal / sal-rest-docgen / src / main / java / org / opendaylight / controller / sal / rest / doc / impl / ApiDocGenerator.java
diff --git a/opendaylight/md-sal/sal-rest-docgen/src/main/java/org/opendaylight/controller/sal/rest/doc/impl/ApiDocGenerator.java b/opendaylight/md-sal/sal-rest-docgen/src/main/java/org/opendaylight/controller/sal/rest/doc/impl/ApiDocGenerator.java
deleted file mode 100644 (file)
index a89cbe5..0000000
+++ /dev/null
@@ -1,54 +0,0 @@
-/*
- * Copyright (c) 2014 Cisco Systems, Inc. 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
- */
-package org.opendaylight.controller.sal.rest.doc.impl;
-
-import com.google.common.base.Preconditions;
-import javax.ws.rs.core.UriInfo;
-import org.opendaylight.controller.sal.core.api.model.SchemaService;
-import org.opendaylight.controller.sal.rest.doc.swagger.ApiDeclaration;
-import org.opendaylight.controller.sal.rest.doc.swagger.ResourceList;
-import org.opendaylight.yangtools.yang.model.api.SchemaContext;
-
-/**
- * This class gathers all yang defined {@link Module}s and generates Swagger compliant documentation.
- */
-public class ApiDocGenerator extends BaseYangSwaggerGenerator {
-
-    private static final ApiDocGenerator INSTANCE = new ApiDocGenerator();
-    private SchemaService schemaService;
-
-    public ResourceList getResourceListing(UriInfo uriInfo) {
-        Preconditions.checkState(schemaService != null);
-        SchemaContext schemaContext = schemaService.getGlobalContext();
-        Preconditions.checkState(schemaContext != null);
-        return super.getResourceListing(uriInfo, schemaContext, "");
-    }
-
-    public ApiDeclaration getApiDeclaration(String module, String revision, UriInfo uriInfo) {
-        SchemaContext schemaContext = schemaService.getGlobalContext();
-        Preconditions.checkState(schemaContext != null);
-        return super.getApiDeclaration(module, revision, uriInfo, schemaContext, "");
-    }
-
-    /**
-     * Returns singleton instance
-     *
-     * @return
-     */
-    public static ApiDocGenerator getInstance() {
-        return INSTANCE;
-    }
-
-    /**
-     *
-     * @param schemaService
-     */
-    public void setSchemaService(SchemaService schemaService) {
-        this.schemaService = schemaService;
-    }
-}