blob: 5124f8241b1752ab91607eafc90382f1506b086c [file] [log] [blame]
Jonathan Hart062a2e82014-02-03 09:41:57 -08001package net.onrc.onos.ofcontroller.networkgraph;
2
3import java.net.InetAddress;
4import java.util.Collection;
5
6import net.floodlightcontroller.util.MACAddress;
7
8public interface Device {
9 public MACAddress getMacAddress();
10
11 public Collection<InetAddress> getIpAddress();
12
13 public Iterable<Port> getAttachmentPoints();
14
15 public long getLastSeenTime();
16}