blob: a8686eaa0adf7e8fa72fc74fe8ec0a63db6c843e [file] [log] [blame]
package org.onlab.onos.net.resource;
/**
* Representation of allocated lambda resource.
*/
public class LambdaResourceAllocation extends LambdaResourceRequest {
private final Lambda lambda;
/**
* Creates a new {@link LambdaResourceAllocation} with {@link Lambda}
* object.
*
* @param lambda allocated lambda
*/
public LambdaResourceAllocation(Lambda lambda) {
this.lambda = lambda;
}
/**
* Returns the lambda resource.
*
* @return the lambda resource
*/
Lambda lambda() {
return lambda;
}
}