blob: 77db2870215e1c9c4b035cd03d167a9144d8c32d [file] [log] [blame]
Toshio Koide485b4782014-10-20 19:34:21 -07001package org.onlab.onos.net.resource;
2
3/**
4 * Representation of allocated bandwidth resource.
5 */
Toshio Koidefa0dff62014-10-23 11:46:44 -07006public class BandwidthResourceAllocation extends BandwidthResourceRequest {
7 /**
8 * Creates a new {@link BandwidthResourceAllocation} with {@link Bandwidth}
9 * object.
10 *
11 * @param bandwidth allocated bandwidth
12 */
13 public BandwidthResourceAllocation(Bandwidth bandwidth) {
14 super(bandwidth);
15 }
Toshio Koide485b4782014-10-20 19:34:21 -070016}