Deprecate old MD-SAL APIs for removal
[controller.git] / opendaylight / md-sal / sal-binding-broker / src / main / java / org / opendaylight / controller / md / sal / binding / impl / BindingDataTreeChangeListenerRegistration.java
1 /*
2  * Copyright (c) 2015 Cisco 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.md.sal.binding.impl;
9
10 import static java.util.Objects.requireNonNull;
11
12 import org.opendaylight.controller.md.sal.binding.api.DataTreeChangeListener;
13 import org.opendaylight.yangtools.concepts.AbstractListenerRegistration;
14 import org.opendaylight.yangtools.concepts.ListenerRegistration;
15
16 @Deprecated(forRemoval = true)
17 class BindingDataTreeChangeListenerRegistration<L extends DataTreeChangeListener<?>>
18         extends AbstractListenerRegistration<L> {
19
20     private final ListenerRegistration<?> domReg;
21
22     BindingDataTreeChangeListenerRegistration(final L listener, final ListenerRegistration<?> domReg) {
23         super(listener);
24         this.domReg = requireNonNull(domReg);
25     }
26
27     @Override
28     protected void removeRegistration() {
29         domReg.close();
30     }
31 }