blob: 6f4cff22804bf38e9382c48d2a9fb6b3712be02a [file] [log] [blame]
package org.onlab.onos.net;
import java.net.URI;
/**
* Immutable representation of a device identity.
*/
public class DeviceId extends ElementId {
// TODO: Discuss whether we should just use ElementId for Device and Host alike
/**
* Creates a device id using the supplied URI.
*
* @param uri backing device URI
*/
public DeviceId(URI uri) {
super(uri);
}
}