blob: 3ddadbc9f65d5b17713aabe657d37f59e40cccd7 [file] [log] [blame]
Toshio Koide485b4782014-10-20 19:34:21 -07001package org.onlab.onos.net.resource;
2
3/**
4 * Abstraction of allocated resource.
5 */
6public interface ResourceAllocation extends ResourceRequest {
Toshio Koidea363f432014-10-23 12:49:40 -07007
8 /**
9 * Returns the type of the allocated resource.
10 *
11 * @return the type of the allocated resource
12 */
Toshio Koided1865a42014-10-23 12:44:55 -070013 ResourceType type();
Toshio Koide485b4782014-10-20 19:34:21 -070014}