blob: 37622e793b6e04a76349cd90548b218ce5e7f477 [file] [log] [blame]
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07001/*
Ray Milkey34c95902015-04-15 09:47:53 -07002 * Copyright 2014-2015 Open Networking Laboratory
Thomas Vachuska4f1a60c2014-10-28 13:39:07 -07003 *
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 */
Brian O'Connor6de2e202015-05-21 14:30:41 -070016package org.onosproject.net.resource.link;
Toshio Koide485b4782014-10-20 19:34:21 -070017
Sho SHIMIZU81cdc392015-10-27 15:18:49 -070018import java.util.Collection;
19import java.util.Map;
20import java.util.Set;
21
Sho SHIMIZUc25a0082015-10-27 17:06:29 -070022import com.google.common.annotations.Beta;
Brian O'Connorabafb502014-12-02 22:26:20 -080023import org.onosproject.net.Link;
24import org.onosproject.net.intent.Constraint;
25import org.onosproject.net.intent.IntentId;
Brian O'Connor6de2e202015-05-21 14:30:41 -070026import org.onosproject.net.resource.ResourceRequest;
Toshio Koide485b4782014-10-20 19:34:21 -070027
28/**
29 * Representation of a request for link resource.
30 */
Toshio Koide65e890f2014-10-23 12:02:25 -070031public interface LinkResourceRequest extends ResourceRequest {
Toshio Koide485b4782014-10-20 19:34:21 -070032
33 /**
34 * Returns the {@link IntentId} associated with the request.
35 *
36 * @return the {@link IntentId} associated with the request
37 */
Ayaka Koshibee114f042015-05-01 11:43:00 -070038 IntentId intentId();
Toshio Koide485b4782014-10-20 19:34:21 -070039
40 /**
41 * Returns the set of target links.
42 *
43 * @return the set of target links
44 */
Toshio Koide65e890f2014-10-23 12:02:25 -070045 Collection<Link> links();
Toshio Koide485b4782014-10-20 19:34:21 -070046
47 /**
48 * Returns the set of resource requests.
49 *
50 * @return the set of resource requests
51 */
Toshio Koide65e890f2014-10-23 12:02:25 -070052 Set<ResourceRequest> resources();
Toshio Koide569ca702014-10-23 11:37:44 -070053
54 /**
Sho SHIMIZU81cdc392015-10-27 15:18:49 -070055 * Returns the set of resource request against the specified link.
56 *
57 * @param link link whose associated resource request is to be returned
58 * @return set of resource request against the specified link
59 */
60 @Beta
61 Set<ResourceRequest> resources(Link link);
62
63 /**
Toshio Koide569ca702014-10-23 11:37:44 -070064 * Builder of link resource request.
65 */
Toshio Koide65e890f2014-10-23 12:02:25 -070066 interface Builder {
Sho SHIMIZU6603a852015-10-27 16:04:57 -070067 /**
Toshio Koide569ca702014-10-23 11:37:44 -070068 * Adds lambda request.
69 *
70 * @return self
Sho SHIMIZUc25a0082015-10-27 17:06:29 -070071 * @deprecated in Emu Release
Toshio Koide569ca702014-10-23 11:37:44 -070072 */
Sho SHIMIZUc25a0082015-10-27 17:06:29 -070073 @Deprecated
Sho SHIMIZU3310a342015-05-13 12:14:05 -070074 Builder addLambdaRequest();
Toshio Koide569ca702014-10-23 11:37:44 -070075
76 /**
Sho SHIMIZUc25a0082015-10-27 17:06:29 -070077 * Adds lambda request.
78 *
79 * @param lambda lambda to be requested
80 * @return self
81 */
82 @Beta
83 Builder addLambdaRequest(LambdaResource lambda);
84
85 /**
Sho SHIMIZU6603a852015-10-27 16:04:57 -070086 * Adds MPLS request.
87 *
88 * @return self
Sho SHIMIZU81cdc392015-10-27 15:18:49 -070089 * @deprecated in Emu Release
Sho SHIMIZU6603a852015-10-27 16:04:57 -070090 */
Sho SHIMIZU81cdc392015-10-27 15:18:49 -070091 @Deprecated
Sho SHIMIZU6603a852015-10-27 16:04:57 -070092 Builder addMplsRequest();
Michele Santuari4b6019e2014-12-19 11:31:45 +010093
94 /**
Sho SHIMIZU81cdc392015-10-27 15:18:49 -070095 * Adds MPLS request.
96 *
97 * @param label MPLS label to be requested
98 * @return self
99 */
100 @Beta
101 Builder addMplsRequest(MplsLabel label);
102
103 /**
104 * Adds MPLS request against the specified links.
105 *
106 * @param labels MPLS labels to be requested against links
107 * @return self
108 */
109 @Beta
110 Builder addMplsRequest(Map<Link, MplsLabel> labels);
111
112 /**
Toshio Koide569ca702014-10-23 11:37:44 -0700113 * Adds bandwidth request with bandwidth value.
114 *
115 * @param bandwidth bandwidth value to be requested
116 * @return self
117 */
Sho SHIMIZU3310a342015-05-13 12:14:05 -0700118 Builder addBandwidthRequest(double bandwidth);
Toshio Koide569ca702014-10-23 11:37:44 -0700119
120 /**
Thomas Vachuskaedc944c2014-11-04 15:42:25 -0800121 * Adds the resources required for a constraint.
122 *
123 * @param constraint the constraint
124 * @return self
125 */
Sho SHIMIZU3310a342015-05-13 12:14:05 -0700126 Builder addConstraint(Constraint constraint);
Thomas Vachuskaedc944c2014-11-04 15:42:25 -0800127
128 /**
Toshio Koide569ca702014-10-23 11:37:44 -0700129 * Returns link resource request.
130 *
131 * @return link resource request
132 */
Sho SHIMIZU3310a342015-05-13 12:14:05 -0700133 LinkResourceRequest build();
Toshio Koide569ca702014-10-23 11:37:44 -0700134 }
Toshio Koide485b4782014-10-20 19:34:21 -0700135}