blob: c9b0e2f5faaff504be0de46f97e6a787c96950a1 [file] [log] [blame]
HIGUCHI Yuta7677a6f2013-06-14 14:13:35 -07001/**
2 *
3 */
4package net.onrc.onos.ofcontroller.core;
5
6import net.floodlightcontroller.core.IOFSwitch;
7
8/**
9 * @author y-higuchi
10 *
11 */
12public interface IOnosRemoteSwitch extends IOFSwitch {
13
14 /**
15 * Setup an unconnected switch with the info required.
16 * @param dpid of the switch
17 */
18 public void setupRemoteSwitch(Long dpid);
19
20}