blob: 412cecdc23dbbf7404735c97faa485be849ca507 [file] [log] [blame]
package org.onlab.onos.net.resource;
import java.util.Set;
import org.onlab.onos.net.Link;
/**
* Representation of allocated link resources.
*/
public interface LinkResourceAllocations extends LinkResourceRequest {
/**
* Returns allocated resource for the given link.
*
* @param link the target link
* @return allocated resource for the link
*/
Set<ResourceAllocation> getResourceAllocation(Link link);
}