Use a static YangInstanceIdentifier in AbstractEntityOwnerChangeListener
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / main / java / org / opendaylight / controller / cluster / datastore / entityownership / DistributedEntityOwnershipListenerRegistration.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.controller.md.sal.common.api.clustering.EntityOwnershipListener;
11 import org.opendaylight.controller.md.sal.common.impl.clustering.AbstractEntityOwnershipListenerRegistration;
12
13 /**
14  * Implementation of EntityOwnershipListenerRegistration.
15  *
16  * @author Thomas Pantelis
17  */
18 class DistributedEntityOwnershipListenerRegistration extends AbstractEntityOwnershipListenerRegistration {
19
20     private final DistributedEntityOwnershipService service;
21
22     DistributedEntityOwnershipListenerRegistration(EntityOwnershipListener listener, String entityType,
23             DistributedEntityOwnershipService service) {
24         super(listener, entityType);
25         this.service = service;
26     }
27
28     @Override
29     protected void removeRegistration() {
30         service.unregisterListener(getEntityType(), getInstance());
31     }
32
33     @Override
34     public String toString() {
35         return "DistributedEntityOwnershipListenerRegistration [entityType=" + getEntityType()
36                 + ", listener=" + getInstance() + "]";
37     }
38 }