X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fcds-access-client%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Faccess%2Fclient%2FInternalCommand.java;h=08735529d8f3276f2f6996eb109adc3112422c07;hp=c841f1350a0505c16ce180c05d7031dee09bd674;hb=refs%2Fchanges%2F11%2F80211%2F6;hpb=9d4ff4c4045fdef38e3940d336d2825df29c4d65 diff --git a/opendaylight/md-sal/cds-access-client/src/main/java/org/opendaylight/controller/cluster/access/client/InternalCommand.java b/opendaylight/md-sal/cds-access-client/src/main/java/org/opendaylight/controller/cluster/access/client/InternalCommand.java index c841f1350a..08735529d8 100644 --- a/opendaylight/md-sal/cds-access-client/src/main/java/org/opendaylight/controller/cluster/access/client/InternalCommand.java +++ b/opendaylight/md-sal/cds-access-client/src/main/java/org/opendaylight/controller/cluster/access/client/InternalCommand.java @@ -8,8 +8,8 @@ package org.opendaylight.controller.cluster.access.client; import akka.dispatch.ControlMessage; -import javax.annotation.Nonnull; -import javax.annotation.Nullable; +import org.eclipse.jdt.annotation.NonNull; +import org.eclipse.jdt.annotation.Nullable; /** * This interface is used to pass the unit of work via the actors mailbox. The command can alter behavior of the actor @@ -25,5 +25,5 @@ public interface InternalCommand extends ControlMessage { * @param currentBehavior Current Behavior * @return Next behavior to use in the client actor */ - @Nullable ClientActorBehavior execute(@Nonnull ClientActorBehavior currentBehavior); + @Nullable ClientActorBehavior execute(@NonNull ClientActorBehavior currentBehavior); }