Bug 4105: Remove EntityOwnershipCandidate
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / entityownership / messages / UnregisterCandidateLocal.java
index 04d7960b7faafe5bc715c440a42eae9aaa5c2778..3373564c67f318d8cfec4fef479af4419f139ff7 100644 (file)
@@ -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 + "]";
     }
 }