/** * Copyright (c) 2014 Cisco Systems, Inc. and others. All rights reserved. * * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 which accompanies this distribution, * and is available at http://www.eclipse.org/legal/epl-v10.html */ package org.opendaylight.controller.md.sal.common.impl.service; import org.opendaylight.controller.md.sal.common.api.data.DataChangeListener; import org.opendaylight.yangtools.concepts.AbstractObjectRegistration; import org.opendaylight.yangtools.concepts.ListenerRegistration; import org.opendaylight.yangtools.concepts.Path; @SuppressWarnings("all") class DataChangeListenerRegistration

, D extends Object, DCL extends DataChangeListener> extends AbstractObjectRegistration implements ListenerRegistration { private AbstractDataBroker dataBroker; private final P path; public P getPath() { return this.path; } public DataChangeListenerRegistration(final P path, final DCL instance, final AbstractDataBroker broker) { super(instance); this.dataBroker = broker; this.path = path; } @Override protected void removeRegistration() { this.dataBroker.removeListener(this); this.dataBroker = null; } }