Fix checkstyle violations in sal-dom-api
[controller.git] / opendaylight / md-sal / sal-dom-api / src / main / java / org / opendaylight / controller / md / sal / dom / api / ClusteredDOMDataTreeChangeListener.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.md.sal.dom.api;
9
10 /**
11  * ClusteredDOMDataTreeChangeListener is a marker interface to enable data tree change notifications on all
12  * instances in a cluster where this listener is registered.
13  *
14  * <p>
15  * Applications should implement ClusteredDOMDataTreeChangeListener instead of {@link DOMDataTreeChangeListener},
16  * if they want to listen for data tree change notifications on any node of a clustered data store.
17  * {@link DOMDataTreeChangeListener} enables notifications only at the leader of the data store.
18  *
19  * @author Thomas Pantelis
20  */
21 public interface ClusteredDOMDataTreeChangeListener extends DOMDataTreeChangeListener {
22
23 }