blob: 3e274b31e250f44b72b8bebe2ee9d800935600d6 [file] [log] [blame]
package org.onlab.onos.net;
import java.net.URI;
/**
* Immutable representation of a host identity.
*/
public final class HostId extends ElementId {
// Public construction is prohibited
private HostId(URI uri) {
super(uri);
}
/**
* Creates a device id using the supplied URI.
*
* @param uri device URI
*/
public static HostId hostId(URI uri) {
return new HostId(uri);
}
/**
* Creates a device id using the supplied URI string.
*
* @param string device URI string
*/
public static HostId hostId(String string) {
return hostId(URI.create(string));
}
}