blob: 6c84382ee6e6cd92ea5c9923cf53699ca5150d49 [file] [log] [blame]
Jonathan Hart062a2e82014-02-03 09:41:57 -08001package net.onrc.onos.ofcontroller.networkgraph;
2
3public interface Link {
4 public Port getSourcePort();
5 public Port getDestinationPort();
6 public Switch getSourceSwitch();
7 public Switch getDestinationSwitch();
8
9 public long getLastSeenTime();
10 public int getCost();
11
12 // Not sure if we want to expose these northbound
13 public long getSourceSwitchDpid();
14 public short getSourcePortNumber();
15 public long getDestinationSwitchDpid();
16 public short getDestinationPortNumber();
17}