Remove YinSchemaSource 51/32851/6
authorRobert Varga <robert.varga@pantheon.sk>
Fri, 15 Jan 2016 20:53:29 +0000 (21:53 +0100)
committerGerrit Code Review <gerrit@opendaylight.org>
Tue, 26 Jan 2016 10:07:31 +0000 (10:07 +0000)
This interface has been superseded, remove it.

Change-Id: If05eba38827746f9d98007b497c744c59e56fed2
Signed-off-by: Robert Varga <robert.varga@pantheon.sk>
yang/yang-model-api/src/main/java/org/opendaylight/yangtools/yang/model/repo/api/YinSchemaSource.java [deleted file]

diff --git a/yang/yang-model-api/src/main/java/org/opendaylight/yangtools/yang/model/repo/api/YinSchemaSource.java b/yang/yang-model-api/src/main/java/org/opendaylight/yangtools/yang/model/repo/api/YinSchemaSource.java
deleted file mode 100644 (file)
index ba0a6a4..0000000
+++ /dev/null
@@ -1,40 +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.yangtools.yang.model.repo.api;
-
-import com.google.common.annotations.Beta;
-import org.w3c.dom.Document;
-
-/**
- * YIN schema source representation. Exposes an RFC6020 YIN XML representation as an W3C {@link Document}.
- *
- * @deprecated Use {@link YinDomSchemaSource} for compatibility, or a transformation of {@link YinXmlSchemaSource}
- * to get the source in your preferred format.
- */
-@Beta
-@Deprecated
-public interface YinSchemaSource extends YinSchemaSourceRepresentation {
-    /**
-     * {@inheritDoc}
-     */
-    @Override
-    SourceIdentifier getIdentifier();
-
-    /**
-     * {@inheritDoc}
-     */
-    @Override
-    Class<? extends YinSchemaSource> getType();
-
-    /**
-     * Return schema source as a Yin-compliant Document.
-     *
-     * @return W3C DOM document.
-     */
-    Document getYinDocument();
-}