blob: f17bfb8eb337ba0390e60dbe295e30ebe854b13a [file] [log] [blame]
Marc De Leenheer1afa2a02015-05-13 09:18:07 -07001/*
2 * Copyright 2015 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 */
Brian O'Connor6de2e202015-05-21 14:30:41 -070016package org.onosproject.net.resource.device;
Marc De Leenheer1afa2a02015-05-13 09:18:07 -070017
Sho SHIMIZUcfe707a2015-10-12 17:45:42 -070018import com.google.common.annotations.Beta;
Marc De Leenheer1afa2a02015-05-13 09:18:07 -070019import org.onosproject.net.intent.IntentId;
20
21import java.util.Set;
22
Sho SHIMIZUcfe707a2015-10-12 17:45:42 -070023@Beta
Sho SHIMIZU7d20af12015-10-01 16:03:51 -070024public interface IntentSetMultimap {
Marc De Leenheer8c2caac2015-05-28 16:37:33 -070025
26 /**
27 * Allocates the mapping between the given intents.
28 *
29 * @param keyIntentId key intent ID
30 * @param valIntentId value intent ID
31 * @return true if mapping was successful, false otherwise
32 */
33 boolean allocateMapping(IntentId keyIntentId, IntentId valIntentId);
34
35 /**
36 * Returns the set of intents mapped to a lower intent.
37 *
38 * @param intentId intent ID
39 * @return set of intent IDs
40 */
41 Set<IntentId> getMapping(IntentId intentId);
42
43 /**
Marc De Leenheer9f7d1892015-05-30 13:22:24 -070044 * Releases the mapping of the given intent.
Marc De Leenheer8c2caac2015-05-28 16:37:33 -070045 *
Marc De Leenheer9f7d1892015-05-30 13:22:24 -070046 * @param intentId intent ID
Marc De Leenheer8c2caac2015-05-28 16:37:33 -070047 */
Marc De Leenheer9f7d1892015-05-30 13:22:24 -070048 void releaseMapping(IntentId intentId);
Marc De Leenheer1afa2a02015-05-13 09:18:07 -070049}