Merge "BUG-2329 Add test for anyxmls inside rpc resonse for netcfon-connector"
[controller.git] / opendaylight / adsal / protocol_plugins / openflow / src / main / java / org / opendaylight / controller / protocol_plugin / openflow / IRefreshInternalProvider.java
1 /*
2  * Copyright (c) 2013 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.controller.protocol_plugin.openflow;
10
11 /**
12  * @file        IRefreshInternalProvider.java
13  *
14  * @brief       Topology refresh notifications requested by application
15  *                      to be fetched from the plugin
16  *
17  * For example, an application that has been started late, will want to
18  * be up to date with the latest topology. Hence, it requests for a
19  * topology refresh from the plugin.
20  */
21
22 /**
23  * Topology refresh requested by the application from the plugin
24  *
25  */
26
27 public interface IRefreshInternalProvider {
28
29     /**
30      * @param containerName
31      *            Name of the container for the topology
32      */
33     public void requestRefresh(String containerName);
34 }