OPNFLWPLUG-1071 : Removal of javax.annotation.Nonnnull and replacement of javax.annot...
[openflowplugin.git] / openflowplugin-api / src / main / java / org / opendaylight / openflowplugin / api / openflow / rpc / RpcManager.java
index f96c956267731d5964984a3b0863a146092bdace..aa82dc43f21e6f8e8cb11a3bd5b9f0c5c75132a8 100644 (file)
@@ -8,7 +8,7 @@
 
 package org.opendaylight.openflowplugin.api.openflow.rpc;
 
-import javax.annotation.Nonnull;
+import org.eclipse.jdt.annotation.NonNull;
 import org.opendaylight.openflowplugin.api.openflow.OFPManager;
 import org.opendaylight.openflowplugin.api.openflow.device.DeviceContext;
 
@@ -17,6 +17,6 @@ import org.opendaylight.openflowplugin.api.openflow.device.DeviceContext;
  */
 public interface RpcManager extends OFPManager {
 
-    RpcContext createContext(@Nonnull DeviceContext deviceContext);
+    RpcContext createContext(@NonNull DeviceContext deviceContext);
 
 }