org.opendaylight.yangtools.rfc8040.model.api.YangDataConstants Maven / Gradle / Ivy
/*
* Copyright (c) 2017 Pantheon Technologies, s.r.o. 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.rfc8040.model.api;
import com.google.common.collect.ImmutableList;
import java.util.Collection;
import org.eclipse.jdt.annotation.NonNullByDefault;
import org.opendaylight.yangtools.yang.common.QNameModule;
import org.opendaylight.yangtools.yang.common.Revision;
import org.opendaylight.yangtools.yang.common.UnresolvedQName.Unqualified;
import org.opendaylight.yangtools.yang.common.XMLNamespace;
import org.opendaylight.yangtools.yang.model.repo.api.SourceIdentifier;
/**
* Constants associated with RFC8040.
*/
@NonNullByDefault
public final class YangDataConstants {
private static final Unqualified MODULE_NAME = Unqualified.of("ietf-restconf").intern();
private static final XMLNamespace MODULE_NAMESPACE =
XMLNamespace.of("urn:ietf:params:xml:ns:yang:ietf-restconf").intern();
private static final Revision RFC8040_REVISION = Revision.of("2017-01-26");
/**
* Runtime RFC8040 identity.
*/
public static final QNameModule RFC8040_MODULE = QNameModule.create(MODULE_NAMESPACE, RFC8040_REVISION).intern();
/**
* RFC8040 model source name.
*/
public static final SourceIdentifier RFC8040_SOURCE = new SourceIdentifier(MODULE_NAME, RFC8040_REVISION);
/**
* Normative prefix to use when importing {@link #RFC8040_SOURCE}.
*/
public static final String MODULE_PREFIX = "rc";
private YangDataConstants() {
// Hidden on purpose
}
/**
* Return identifiers of all sources known to define the metadata extension.
*
* @return Collection of identifiers.
*/
public static Collection knownModelSources() {
return ImmutableList.of(RFC8040_SOURCE);
}
}