blob: 10343c4ca2053f51173484daa6ca96d7651cf801 [file] [log] [blame]
Sho SHIMIZUa8241ca2015-08-25 14:52:08 -07001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2015-present Open Networking Foundation
Sho SHIMIZUa8241ca2015-08-25 14:52:08 -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 */
16package org.onosproject.net.behaviour;
17
18import com.google.common.annotations.Beta;
HIGUCHI Yutab7a15d72015-12-15 09:54:40 -080019
20import java.util.Set;
21
22import org.onlab.packet.MplsLabel;
Sho SHIMIZUa8241ca2015-08-25 14:52:08 -070023import org.onosproject.net.PortNumber;
24import org.onosproject.net.driver.HandlerBehaviour;
25
26/**
27 * A HandlerBehaviour to check the capability of MPLS.
28 */
29@Beta
30public interface MplsQuery extends HandlerBehaviour {
31
32 /**
HIGUCHI Yutab7a15d72015-12-15 09:54:40 -080033 * Returns set of MplsLabels which can be used at the port.
34 *
35 * @param port to be checked for the available resources.
36 * @return Set of MplsLabels which can be used at the port.
Sho SHIMIZUa8241ca2015-08-25 14:52:08 -070037 */
HIGUCHI Yutab7a15d72015-12-15 09:54:40 -080038 Set<MplsLabel> queryMplsLabels(PortNumber port);
39
Sho SHIMIZUa8241ca2015-08-25 14:52:08 -070040}