398671e660a7e92aaf13ec6eb3b8896e3d1b1b1c
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / entityownership / DistributedEntityOwnershipCandidateRegistration.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;
9
10 import org.opendaylight.mdsal.eos.dom.api.DOMEntity;
11 import org.opendaylight.mdsal.eos.dom.api.DOMEntityOwnershipCandidateRegistration;
12 import org.opendaylight.yangtools.concepts.AbstractObjectRegistration;
13
14 /**
15  * Implementation of EntityOwnershipCandidateRegistration.
16  *
17  * @author Thomas Pantelis
18  */
19 class DistributedEntityOwnershipCandidateRegistration extends AbstractObjectRegistration<DOMEntity>
20         implements DOMEntityOwnershipCandidateRegistration {
21     private final DistributedEntityOwnershipService service;
22
23     DistributedEntityOwnershipCandidateRegistration(DOMEntity entity, DistributedEntityOwnershipService service) {
24         super(entity);
25         this.service = service;
26     }
27
28     @Override
29     protected void removeRegistration() {
30         service.unregisterCandidate(getInstance());
31     }
32
33     @Override
34     public String toString() {
35         return "DistributedEntityOwnershipCandidateRegistration [entity=" + getInstance() + "]";
36     }
37
38
39 }