blob: 662ba754450e65456ecfa1e7b66855a51ea61a40 [file] [log] [blame]
alshabib1f44e8e2014-08-14 15:19:57 -07001package net.onrc.onos.api.host;
2
3import net.onrc.onos.api.ProviderService;
4
5/**
6 * Means of conveying host information to the core.
7 */
8public interface HostProviderService extends ProviderService {
9
10 void hostDetected(HostDescription hostDescription);
11
12}