X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=restconf%2Fsal-rest-connector%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Frestconf%2Fcommon%2Freferences%2FSchemaContextRef.java;h=f18ab0af6102f5d0f6332ea7887068610a0c79cb;hb=e4fb9cf5bc1fa2bda3d01ad60b37758f0b0df13c;hp=371fee4bfb09e6dcca2a2f70fdd332884f3a74b0;hpb=52d1c5729336f49564c81f20ca027760a328a405;p=netconf.git diff --git a/restconf/sal-rest-connector/src/main/java/org/opendaylight/restconf/common/references/SchemaContextRef.java b/restconf/sal-rest-connector/src/main/java/org/opendaylight/restconf/common/references/SchemaContextRef.java index 371fee4bfb..f18ab0af61 100644 --- a/restconf/sal-rest-connector/src/main/java/org/opendaylight/restconf/common/references/SchemaContextRef.java +++ b/restconf/sal-rest-connector/src/main/java/org/opendaylight/restconf/common/references/SchemaContextRef.java @@ -12,7 +12,7 @@ import java.net.URI; import java.util.Date; import java.util.Set; import org.opendaylight.controller.md.sal.dom.api.DOMMountPoint; -import org.opendaylight.restconf.Draft18; +import org.opendaylight.restconf.Rfc8040; import org.opendaylight.yangtools.yang.common.QName; import org.opendaylight.yangtools.yang.model.api.Module; import org.opendaylight.yangtools.yang.model.api.SchemaContext; @@ -73,13 +73,13 @@ public final class SchemaContextRef { /** * Get {@link Module} by ietf-restconf qname from - * {@link Draft18.RestconfModule} + * {@link Rfc8040.RestconfModule} * * @return {@link Module} */ public Module getRestconfModule() { - return this.findModuleByNamespaceAndRevision(Draft18.RestconfModule.IETF_RESTCONF_QNAME.getNamespace(), - Draft18.RestconfModule.IETF_RESTCONF_QNAME.getRevision()); + return this.findModuleByNamespaceAndRevision(Rfc8040.RestconfModule.IETF_RESTCONF_QNAME.getNamespace(), + Rfc8040.RestconfModule.IETF_RESTCONF_QNAME.getRevision()); } /**