BUG-997: Introduce SchemaSource respository and related APIs
[yangtools.git] / yang / yang-model-api / src / main / java / org / opendaylight / yangtools / yang / model / repo / api / YinSchemaSource.java
1 /*
2  * Copyright (c) 2014 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/eplv10.html
7  */
8 package org.opendaylight.yangtools.yang.model.repo.api;
9
10 import org.w3c.dom.Document;
11
12 /**
13  * Yin schema source representation. Exposes an RFC6020 YIN XML representation
14  * as an W3C {@link Document}.
15  */
16 public interface YinSchemaSource extends SchemaSourceRepresentation {
17     /**
18      * {@inheritDoc}
19      */
20     @Override
21     SourceIdentifier getIdentifier();
22
23     /**
24      * {@inheritDoc}
25      */
26     @Override
27     Class<? extends YinSchemaSource> getType();
28
29     /**
30      * Return schema source as a Yin-compliant Document.
31      *
32      * @return W3C DOM document.
33      */
34     Document getYinDocument();
35 }