blob: 0fdaa15efd975be06f4a62d3aea3416941b6a36a [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 SHIMIZUe825af02015-07-02 10:14:22 -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
23/**
24 * Service for providing device resources.
25 */
Sho SHIMIZUe825af02015-07-02 10:14:22 -070026@Beta
Marc De Leenheer1afa2a02015-05-13 09:18:07 -070027public interface DeviceResourceService {
Marc De Leenheer8c2caac2015-05-28 16:37:33 -070028
29 /**
30 * Request a mapping between the given intents.
31 *
32 * @param keyIntentId the key intent ID
33 * @param valIntentId the value intent ID
34 * @return true if mapping was successful, false otherwise
35 */
36 boolean requestMapping(IntentId keyIntentId, IntentId valIntentId);
37
38 /**
39 * Returns the intents mapped to a lower intent.
40 *
41 * @param intentId the intent ID
42 * @return the set of intent IDs
43 */
44 Set<IntentId> getMapping(IntentId intentId);
45
Marc De Leenheer9f7d1892015-05-30 13:22:24 -070046 /**
47 * Release mapping of given intent.
48 *
49 * @param intentId intent ID
50 */
51 void releaseMapping(IntentId intentId);
Marc De Leenheer1afa2a02015-05-13 09:18:07 -070052}