blob: fdcaa9bd30755ffe6e2be047208d7f489cacbddf [file] [log] [blame]
package org.onlab.onos.net.device;
import org.onlab.onos.net.DeviceId;
/**
* Service for administering the inventory of infrastructure devices.
*/
public interface DeviceAdminService {
/**
* Removes the device with the specified identifier.
*
* @param deviceId device identifier
*/
void removeDevice(DeviceId deviceId);
// TODO: add ability to administratively suspend/resume device
}