blob: 1ed63b452827c41c1dd58e488571651e11f01bb8 [file] [log] [blame]
Toshio Koide485b4782014-10-20 19:34:21 -07001package org.onlab.onos.net.resource;
2
3/**
4 * Representation of allocated lambda resource.
5 */
6public interface LambdaResourceAllocation extends LambdaResourceRequest {
7 /**
8 * Returns the lambda resource.
9 *
10 * @return the lambda resource
11 */
12 Lambda lambda();
13}