blob: 2ea24b8732d04ac522ee0e0bea86d8a887b964b2 [file] [log] [blame]
Toshio Koide485b4782014-10-20 19:34:21 -07001package org.onlab.onos.net.resource;
2
3/**
4 * Representation of a request for bandwidth resource.
5 */
6public interface BandwidthResourceRequest {
7 /**
8 * Returns the bandwidth resource.
9 *
10 * @return the bandwidth resource
11 */
12 Bandwidth bandwidth();
13}