blob: 54d9372e6fedd1f6cd491e51e57d1f925c6d3fe1 [file] [log] [blame]
/**
*
*/
package net.onrc.onos.core.main;
import net.floodlightcontroller.core.IOFSwitch;
/**
* Additional interface added to IOFSwitch by ONOS
* to represent remote Switch.
*/
public interface IOnosRemoteSwitch extends IOFSwitch {
/**
* Setup an unconnected switch with the info required.
*
* @param dpid of the switch
*/
public void setupRemoteSwitch(Long dpid);
}