blob: 412cecdc23dbbf7404735c97faa485be849ca507 [file] [log] [blame]
Toshio Koide485b4782014-10-20 19:34:21 -07001package org.onlab.onos.net.resource;
2
Toshio Koided707d7a2014-10-23 12:37:51 -07003import java.util.Set;
4
Toshio Koide485b4782014-10-20 19:34:21 -07005import org.onlab.onos.net.Link;
6
7/**
8 * Representation of allocated link resources.
9 */
Toshio Koide65e890f2014-10-23 12:02:25 -070010public interface LinkResourceAllocations extends LinkResourceRequest {
Toshio Koide485b4782014-10-20 19:34:21 -070011 /**
12 * Returns allocated resource for the given link.
13 *
14 * @param link the target link
15 * @return allocated resource for the link
16 */
Toshio Koided707d7a2014-10-23 12:37:51 -070017 Set<ResourceAllocation> getResourceAllocation(Link link);
Toshio Koide485b4782014-10-20 19:34:21 -070018}