X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-distributed-datastore%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Fdatastore%2Fentityownership%2Fmessages%2FUnregisterCandidateLocal.java;h=3373564c67f318d8cfec4fef479af4419f139ff7;hp=04d7960b7faafe5bc715c440a42eae9aaa5c2778;hb=16263ee5c532e75ca6f14ed5fa9053a38694af14;hpb=d9ea4400df226eb65c964ab0cb2aa81ee495ba15 diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/entityownership/messages/UnregisterCandidateLocal.java b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/entityownership/messages/UnregisterCandidateLocal.java index 04d7960b7f..3373564c67 100644 --- a/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/entityownership/messages/UnregisterCandidateLocal.java +++ b/opendaylight/md-sal/sal-distributed-datastore/src/main/java/org/opendaylight/controller/cluster/datastore/entityownership/messages/UnregisterCandidateLocal.java @@ -8,7 +8,6 @@ package org.opendaylight.controller.cluster.datastore.entityownership.messages; import org.opendaylight.controller.md.sal.common.api.clustering.Entity; -import org.opendaylight.controller.md.sal.common.api.clustering.EntityOwnershipCandidate; /** * Message sent to the local EntityOwnershipShard to unregister a candidate. @@ -16,24 +15,18 @@ import org.opendaylight.controller.md.sal.common.api.clustering.EntityOwnershipC * @author Thomas Pantelis */ public class UnregisterCandidateLocal { - private final EntityOwnershipCandidate candidate; private final Entity entity; - public UnregisterCandidateLocal(EntityOwnershipCandidate candidate, Entity entity) { - this.candidate = candidate; + public UnregisterCandidateLocal(Entity entity) { this.entity = entity; } - public EntityOwnershipCandidate getCandidate() { - return candidate; - } - public Entity getEntity() { return entity; } @Override public String toString() { - return "UnregisterCandidateLocal [entity=" + entity + ", candidate=" + candidate + "]"; + return "UnregisterCandidateLocal [entity=" + entity + "]"; } }