blob: 67c539dfbbe8de22c3adc614b798c36b2d0afad8 [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
Marc De Leenheer1afa2a02015-05-13 09:18:07 -070018import org.onosproject.net.intent.IntentId;
19
20import java.util.Set;
21
Sho SHIMIZU7d20af12015-10-01 16:03:51 -070022public interface IntentSetMultimap {
Marc De Leenheer8c2caac2015-05-28 16:37:33 -070023
24 /**
25 * Allocates the mapping between the given intents.
26 *
27 * @param keyIntentId key intent ID
28 * @param valIntentId value intent ID
29 * @return true if mapping was successful, false otherwise
30 */
31 boolean allocateMapping(IntentId keyIntentId, IntentId valIntentId);
32
33 /**
34 * Returns the set of intents mapped to a lower intent.
35 *
36 * @param intentId intent ID
37 * @return set of intent IDs
38 */
39 Set<IntentId> getMapping(IntentId intentId);
40
41 /**
Marc De Leenheer9f7d1892015-05-30 13:22:24 -070042 * Releases the mapping of the given intent.
Marc De Leenheer8c2caac2015-05-28 16:37:33 -070043 *
Marc De Leenheer9f7d1892015-05-30 13:22:24 -070044 * @param intentId intent ID
Marc De Leenheer8c2caac2015-05-28 16:37:33 -070045 */
Marc De Leenheer9f7d1892015-05-30 13:22:24 -070046 void releaseMapping(IntentId intentId);
Marc De Leenheer1afa2a02015-05-13 09:18:07 -070047}