OpenDaylight Controller functional modules.
[controller.git] / opendaylight / protocol_plugins / openflow / src / main / java / org / opendaylight / controller / protocol_plugin / openflow / IRefreshInternalProvider.java
1
2 /*
3  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
4  *
5  * This program and the accompanying materials are made available under the
6  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
7  * and is available at http://www.eclipse.org/legal/epl-v10.html
8  */
9
10 package org.opendaylight.controller.protocol_plugin.openflow;
11
12 /**
13  * @file        IRefreshInternalProvider.java
14  *
15  * @brief       Topology refresh notifications requested by application
16  *                      to be fetched from the plugin
17  *
18  * For example, an application that has been started late, will want to
19  * be up to date with the latest topology.  Hence, it requests for a
20  * topology refresh from the plugin.
21  */
22
23 /**
24  * Topology refresh requested by the application from the plugin
25  *
26  */
27
28 public interface IRefreshInternalProvider {
29
30     /**
31      * @param containerName
32      */
33     public void requestRefresh(String containerName);
34 }