Cleanup IdentifierNamespace annotations
[yangtools.git] / yang / yang-model-api / src / main / java / org / opendaylight / yangtools / yang / model / api / meta / IdentifierNamespace.java
index c6179847629a6ffe07b20b18ba0b57674c689583..d6d0f78f86937a9f4991767cbc33a62e61cbb443 100644 (file)
@@ -7,8 +7,8 @@
  */
 package org.opendaylight.yangtools.yang.model.api.meta;
 
-import javax.annotation.Nonnull;
-import javax.annotation.Nullable;
+import org.eclipse.jdt.annotation.NonNull;
+import org.eclipse.jdt.annotation.Nullable;
 
 /**
  * Model specific namespace which allows access to specific
@@ -28,5 +28,5 @@ public interface IdentifierNamespace<K, V> {
      * @param identifier Identifier of value
      * @return value or null, if identifier is not present in namespace.
      */
-    @Nullable V get(@Nonnull K identifier);
+    @Nullable V get(@NonNull K identifier);
 }