blob: 23a0c30f4459727541a5bd425b6e3b260b5f2cd2 [file] [log] [blame]
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07001/*
2 * Copyright 2014 Open Networking Laboratory
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
Toshio Koide485b4782014-10-20 19:34:21 -070016package org.onlab.onos.net.resource;
17
18import java.util.Collection;
19import java.util.Set;
20
21import org.onlab.onos.net.Link;
Thomas Vachuskaedc944c2014-11-04 15:42:25 -080022import org.onlab.onos.net.intent.Constraint;
Toshio Koide485b4782014-10-20 19:34:21 -070023import org.onlab.onos.net.intent.IntentId;
24
25/**
26 * Representation of a request for link resource.
27 */
Toshio Koide65e890f2014-10-23 12:02:25 -070028public interface LinkResourceRequest extends ResourceRequest {
Toshio Koide485b4782014-10-20 19:34:21 -070029
30 /**
31 * Returns the {@link IntentId} associated with the request.
32 *
33 * @return the {@link IntentId} associated with the request
34 */
Toshio Koide65e890f2014-10-23 12:02:25 -070035 IntentId intendId();
Toshio Koide485b4782014-10-20 19:34:21 -070036
37 /**
38 * Returns the set of target links.
39 *
40 * @return the set of target links
41 */
Toshio Koide65e890f2014-10-23 12:02:25 -070042 Collection<Link> links();
Toshio Koide485b4782014-10-20 19:34:21 -070043
44 /**
45 * Returns the set of resource requests.
46 *
47 * @return the set of resource requests
48 */
Toshio Koide65e890f2014-10-23 12:02:25 -070049 Set<ResourceRequest> resources();
Toshio Koide569ca702014-10-23 11:37:44 -070050
51 /**
52 * Builder of link resource request.
53 */
Toshio Koide65e890f2014-10-23 12:02:25 -070054 interface Builder {
55 /**
Toshio Koide569ca702014-10-23 11:37:44 -070056 * Adds lambda request.
57 *
58 * @return self
59 */
Toshio Koide65e890f2014-10-23 12:02:25 -070060 public Builder addLambdaRequest();
Toshio Koide569ca702014-10-23 11:37:44 -070061
62 /**
63 * Adds bandwidth request with bandwidth value.
64 *
65 * @param bandwidth bandwidth value to be requested
66 * @return self
67 */
Toshio Koide65e890f2014-10-23 12:02:25 -070068 public Builder addBandwidthRequest(double bandwidth);
Toshio Koide569ca702014-10-23 11:37:44 -070069
70 /**
Thomas Vachuskaedc944c2014-11-04 15:42:25 -080071 * Adds the resources required for a constraint.
72 *
73 * @param constraint the constraint
74 * @return self
75 */
76 public Builder addConstraint(Constraint constraint);
77
78 /**
Toshio Koide569ca702014-10-23 11:37:44 -070079 * Returns link resource request.
80 *
81 * @return link resource request
82 */
Toshio Koide65e890f2014-10-23 12:02:25 -070083 public LinkResourceRequest build();
Toshio Koide569ca702014-10-23 11:37:44 -070084 }
Toshio Koide485b4782014-10-20 19:34:21 -070085}