blob: d94449af9fb1c6c92a8dc2d785ded46c968a4c29 [file] [log] [blame]
tom89b63c52014-09-16 09:19:51 -07001package org.onlab.onos.net.host;
2
3import org.onlab.onos.net.HostId;
4
5/**
6 * Service for administering the inventory of end-station hosts.
7 */
8public interface HostAdminService {
9
10 /**
11 * Removes the end-station host with the specified identifier.
12 *
13 * @param hostId host identifier
14 */
15 void removeHost(HostId hostId);
16
17}