04d7960b7faafe5bc715c440a42eae9aaa5c2778
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / entityownership / messages / UnregisterCandidateLocal.java
1 /*
2  * Copyright (c) 2015 Brocade Communications Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.controller.cluster.datastore.entityownership.messages;
9
10 import org.opendaylight.controller.md.sal.common.api.clustering.Entity;
11 import org.opendaylight.controller.md.sal.common.api.clustering.EntityOwnershipCandidate;
12
13 /**
14  * Message sent to the local EntityOwnershipShard to unregister a candidate.
15  *
16  * @author Thomas Pantelis
17  */
18 public class UnregisterCandidateLocal {
19     private final EntityOwnershipCandidate candidate;
20     private final Entity entity;
21
22     public UnregisterCandidateLocal(EntityOwnershipCandidate candidate, Entity entity) {
23         this.candidate = candidate;
24         this.entity = entity;
25     }
26
27     public EntityOwnershipCandidate getCandidate() {
28         return candidate;
29     }
30
31     public Entity getEntity() {
32         return entity;
33     }
34
35     @Override
36     public String toString() {
37         return "UnregisterCandidateLocal [entity=" + entity + ", candidate=" + candidate + "]";
38     }
39 }