Remove dependency of impl on onf-extensions
[openflowplugin.git] / applications / forwardingrules-manager / src / main / java / org / opendaylight / openflowplugin / applications / frm / FlowNodeReconciliation.java
1 /**
2  * Copyright (c) 2014, 2017 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
9 package org.opendaylight.openflowplugin.applications.frm;
10
11 import org.opendaylight.openflowplugin.applications.reconciliation.ReconciliationNotificationListener;
12
13 /**
14  * Implementation provider of this interface will implement reconciliation functionality for a newly connected node.
15  * Implementation is not enforced to do reconciliation in any specific way, but the higher level intention is to
16  * provide best effort reconciliation of  all the configuration (flow/meter/group) present in configuration data store
17  * for the given node.
18  *
19  * @author <a href="mailto:vdemcak@cisco.com">Vaclav Demcak</a>
20  */
21 public interface FlowNodeReconciliation extends ReconciliationNotificationListener, AutoCloseable {
22 }