blob: d94449af9fb1c6c92a8dc2d785ded46c968a4c29 [file] [log] [blame]
package org.onlab.onos.net.host;
import org.onlab.onos.net.HostId;
/**
* Service for administering the inventory of end-station hosts.
*/
public interface HostAdminService {
/**
* Removes the end-station host with the specified identifier.
*
* @param hostId host identifier
*/
void removeHost(HostId hostId);
}