blob: 92bfe9529e3a00d70c3b955d7df49b17e8ec39a1 [file] [log] [blame]
package org.onlab.onos.net;
import org.onlab.onos.net.provider.ProviderId;
/**
* Abstraction of an entity supplied by a provider.
*/
public interface Provided {
/**
* Returns the identifier of the provider which supplied the entity.
*
* @return provider identification
*/
ProviderId providerId();
}