blob: 3dce62f200aa08ad4c32fc67c08dcc03620e9c15 [file] [log] [blame]
Toshio Koide485b4782014-10-20 19:34:21 -07001package org.onlab.onos.net.resource;
2
3import org.onlab.onos.net.Link;
4
5/**
6 * Representation of allocated link resources.
7 */
Toshio Koidefa0dff62014-10-23 11:46:44 -07008public interface LinkResourceAllocations {
Toshio Koide485b4782014-10-20 19:34:21 -07009 /**
10 * Returns allocated resource for the given link.
11 *
12 * @param link the target link
13 * @return allocated resource for the link
14 */
15 ResourceAllocation getResourceAllocation(Link link);
16}