blob: 3ddadbc9f65d5b17713aabe657d37f59e40cccd7 [file] [log] [blame]
package org.onlab.onos.net.resource;
/**
* Abstraction of allocated resource.
*/
public interface ResourceAllocation extends ResourceRequest {
/**
* Returns the type of the allocated resource.
*
* @return the type of the allocated resource
*/
ResourceType type();
}