blob: 92bfe9529e3a00d70c3b955d7df49b17e8ec39a1 [file] [log] [blame]
tomd1900f32014-09-03 14:08:16 -07001package org.onlab.onos.net;
2
3import org.onlab.onos.net.provider.ProviderId;
tom64b7aac2014-08-26 00:18:21 -07004
5/**
6 * Abstraction of an entity supplied by a provider.
7 */
8public interface Provided {
9
10 /**
11 * Returns the identifier of the provider which supplied the entity.
12 *
13 * @return provider identification
14 */
tom18567e92014-08-26 01:39:47 -070015 ProviderId providerId();
tom64b7aac2014-08-26 00:18:21 -070016
17}