blob: 4d5d4706fb3b7bcc7731efb29ef052a52a02b459 [file] [log] [blame]
tom0eb04ca2014-08-25 14:34:51 -07001package org.onlab.onos.net.host;
2
3import org.onlab.onos.net.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}