blob: ae21a61eec0ca89c0082dba324fec62ef7f9e962 [file] [log] [blame]
tomc1a38d32014-08-25 23:01:32 -07001package org.onlab.onos.net.provider;
tom0eb04ca2014-08-25 14:34:51 -07002
3/**
4 * Abstraction of a service through which providers can inject information
5 * about the network environment into the core.
tom64b7aac2014-08-26 00:18:21 -07006 *
7 * @param <P> type of the information provider
tom0eb04ca2014-08-25 14:34:51 -07008 */
tom64b7aac2014-08-26 00:18:21 -07009public interface ProviderService<P extends Provider> {
10
11 /**
12 * Returns the provider to which this service has been issued.
13 *
14 * @return provider to which this service has been assigned
15 */
16 P provider();
17
tom0eb04ca2014-08-25 14:34:51 -070018}