2 * Copyright 2015 Open Networking Laboratory
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
16 package org.onosproject.net.resource.device;
18 import org.onosproject.net.intent.IntentId;
22 public interface IntentSetMultimap {
25 * Allocates the mapping between the given intents.
27 * @param keyIntentId key intent ID
28 * @param valIntentId value intent ID
29 * @return true if mapping was successful, false otherwise
31 boolean allocateMapping(IntentId keyIntentId, IntentId valIntentId);
34 * Returns the set of intents mapped to a lower intent.
36 * @param intentId intent ID
37 * @return set of intent IDs
39 Set<IntentId> getMapping(IntentId intentId);
42 * Releases the mapping of the given intent.
44 * @param intentId intent ID
46 void releaseMapping(IntentId intentId);