Add rename notes for Any{Data,Xml}SchemaNode
[yangtools.git] / yang / yang-model-api / src / main / java / org / opendaylight / yangtools / yang / model / api / IdentitySchemaNode.java
index b385d3d20a2280457f4d61c99a239b5c94022c9d..42ae9735087c1636e432d78b63c1acebb7511775 100644 (file)
@@ -8,7 +8,7 @@
 package org.opendaylight.yangtools.yang.model.api;
 
 import java.util.Set;
-import javax.annotation.Nonnull;
+import org.eclipse.jdt.annotation.NonNull;
 
 /**
  * Interface describing YANG 'identity' statement.
@@ -30,12 +30,12 @@ public interface IdentitySchemaNode extends SchemaNode {
      * @return set of existing identities from which the new identity is derived or an empty Set if the identity is
      *         a root identity.
      */
-    @Nonnull Set<IdentitySchemaNode> getBaseIdentities();
+    @NonNull Set<IdentitySchemaNode> getBaseIdentities();
 
     /**
      * Get identities derived from this identity.
      *
      * @return collection of identities derived from this identity
      */
-    Set<IdentitySchemaNode> getDerivedIdentities();
+    @NonNull Set<IdentitySchemaNode> getDerivedIdentities();
 }