blob: 5c124db6d088b8d77e75d03e6e6b760863ea49ad [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 */
15 long timestamp();
16
17}