blob: 022a6f978fb7c0675b7ac1123bf5dd483e530336 [file] [log] [blame]
tomb36046e2014-08-27 00:22:24 -07001package org.onlab.onos.net;
2
3/**
4 * Representation of a network edge location where an end-station host is
5 * connected.
6 */
7public interface HostLocation extends ConnectPoint {
8
9 /**
10 * Returns the timestamp when the location was established, given in
11 * milliseconds since start of epoch.
12 *
13 * @return timestamp in milliseconds since start of epoch
14 */
tom43387f32014-08-27 14:42:43 -070015 long time();
tomb36046e2014-08-27 00:22:24 -070016
17}