Change artifactId in sal-rest-docgen
[netconf.git] / restconf / sal-rest-docgen / src / main / java / org / opendaylight / netconf / sal / rest / doc / impl / MountPointOpenApiGeneratorRFC8040.java
diff --git a/restconf/sal-rest-docgen/src/main/java/org/opendaylight/netconf/sal/rest/doc/impl/MountPointOpenApiGeneratorRFC8040.java b/restconf/sal-rest-docgen/src/main/java/org/opendaylight/netconf/sal/rest/doc/impl/MountPointOpenApiGeneratorRFC8040.java
deleted file mode 100644 (file)
index 6438092..0000000
+++ /dev/null
@@ -1,45 +0,0 @@
-/*
- * Copyright (c) 2018 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
- */
-package org.opendaylight.netconf.sal.rest.doc.impl;
-
-import java.util.Optional;
-import org.opendaylight.mdsal.dom.api.DOMMountPointService;
-import org.opendaylight.mdsal.dom.api.DOMSchemaService;
-import org.opendaylight.netconf.sal.rest.doc.mountpoints.MountPointOpenApi;
-
-/**
- * MountPoint generator implementation for RFC 8040.
- *
- * @author Thomas Pantelis
- */
-public class MountPointOpenApiGeneratorRFC8040 extends BaseYangOpenApiGeneratorRFC8040 implements AutoCloseable {
-    private final MountPointOpenApi mountPointOpenApi;
-
-    public MountPointOpenApiGeneratorRFC8040(final DOMSchemaService schemaService,
-            final DOMMountPointService mountService) {
-        super(Optional.of(schemaService));
-        mountPointOpenApi = new MountPointOpenApi(schemaService, mountService, this);
-        mountPointOpenApi.init();
-    }
-
-    public MountPointOpenApiGeneratorRFC8040(final DOMSchemaService schemaService,
-            final DOMMountPointService mountService, final String basePath) {
-        super(Optional.of(schemaService), basePath);
-        mountPointOpenApi = new MountPointOpenApi(schemaService, mountService, this);
-        mountPointOpenApi.init();
-    }
-
-    public MountPointOpenApi getMountPointOpenApi() {
-        return mountPointOpenApi;
-    }
-
-    @Override
-    public void close() {
-        mountPointOpenApi.close();
-    }
-}