6ba09a07297cabafa1cd0b29405b9db400e8f2bf
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / entityownership / messages / RegisterCandidateLocal.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 register a candidate.
15  *
16  * @author Thomas Pantelis
17  */
18 public class RegisterCandidateLocal {
19     private final EntityOwnershipCandidate candidate;
20     private final Entity entity;
21
22     public RegisterCandidateLocal(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         StringBuilder builder = new StringBuilder();
38         builder.append("RegisterCandidateLocal [candidate=").append(candidate.getClass()).append(", entity=")
39                 .append(entity).append("]");
40         return builder.toString();
41     }
42 }