blob: 71e670aff56105c634834ce520e7452b5042d439 [file] [log] [blame]
package org.onlab.onos.net.provider;
/**
* 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 id();
}