X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=yang%2Fyang-model-api%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fyangtools%2Fyang%2Fmodel%2Fapi%2Fmeta%2FIdentifierNamespace.java;h=4f0ed6a3693de8c4dfb4d07cabe0776e36f801a5;hb=1c94a7cbeee99477aed0fe6d06e3b075ce8e2885;hp=3a28984882805ec8920d2421b3ac04c10a8579f7;hpb=66f6a6c5cadc384c13e684afb51f7e0ecb691510;p=yangtools.git diff --git a/yang/yang-model-api/src/main/java/org/opendaylight/yangtools/yang/model/api/meta/IdentifierNamespace.java b/yang/yang-model-api/src/main/java/org/opendaylight/yangtools/yang/model/api/meta/IdentifierNamespace.java index 3a28984882..4f0ed6a369 100644 --- a/yang/yang-model-api/src/main/java/org/opendaylight/yangtools/yang/model/api/meta/IdentifierNamespace.java +++ b/yang/yang-model-api/src/main/java/org/opendaylight/yangtools/yang/model/api/meta/IdentifierNamespace.java @@ -9,8 +9,8 @@ package org.opendaylight.yangtools.yang.model.api.meta; import javax.annotation.Nonnull; import javax.annotation.Nullable; + /** - * * Model specific namespace which allows access to specific * * {@link IdentifierNamespace} serves as common superclass for YANG model @@ -24,14 +24,11 @@ import javax.annotation.Nullable; * @param Value type */ public interface IdentifierNamespace { - /** - * * Returns value associated with supplied identifier * * @param identifier Identifier of value * @return value or null, if identifier is not present in namespace. */ @Nullable V get(@Nonnull K identifier); - }