Merge branch 'master' of ../controller
[yangtools.git] / yang / rfc8040-model-api / src / main / java / org / opendaylight / yangtools / rfc8040 / model / api / YangDataConstants.java
1 /*
2  * Copyright (c) 2017 Pantheon Technologies, s.r.o. 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/epl-v10.html
7  */
8 package org.opendaylight.yangtools.rfc8040.model.api;
9
10 import com.google.common.collect.ImmutableList;
11 import java.net.URI;
12 import java.util.Collection;
13 import org.eclipse.jdt.annotation.NonNullByDefault;
14 import org.opendaylight.yangtools.yang.common.QNameModule;
15 import org.opendaylight.yangtools.yang.common.Revision;
16 import org.opendaylight.yangtools.yang.model.repo.api.RevisionSourceIdentifier;
17 import org.opendaylight.yangtools.yang.model.repo.api.SourceIdentifier;
18
19 /**
20  * Constants associated with RFC8040.
21  *
22  * @author Robert Varga
23  */
24 @NonNullByDefault
25 public final class YangDataConstants {
26     private static final String MODULE_NAME = "ietf-restconf";
27     private static final URI MODULE_NAMESPACE = URI.create("urn:ietf:params:xml:ns:yang:ietf-restconf");
28     private static final Revision RFC8040_REVISION = Revision.of("2017-01-26");
29
30     /**
31      * Runtime RFC8040 identity.
32      */
33     public static final QNameModule RFC8040_MODULE = QNameModule.create(MODULE_NAMESPACE, RFC8040_REVISION).intern();
34
35     /**
36      * RFC8040 model source name.
37      */
38     public static final SourceIdentifier RFC8040_SOURCE = RevisionSourceIdentifier.create(MODULE_NAME,
39         RFC8040_REVISION);
40
41     /**
42      * Normative prefix to use when importing {@link #RFC8040_SOURCE}.
43      */
44     public static final String MODULE_PREFIX = "rc";
45
46     private YangDataConstants() {
47         throw new UnsupportedOperationException();
48     }
49
50     /**
51      * Return identifiers of all sources known to define the metadata extension.
52      *
53      * @return Collection of identifiers.
54      */
55     public static Collection<SourceIdentifier> knownModelSources() {
56         return ImmutableList.of(RFC8040_SOURCE);
57     }
58 }