blob: 009ef0a5fd4561defe7b405ec02f4ef0eee93091 [file] [log] [blame]
Sho SHIMIZU264497f2015-08-25 14:50:12 -07001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2015-present Open Networking Foundation
Sho SHIMIZU264497f2015-08-25 14:50:12 -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;
21import org.onlab.packet.VlanId;
Sho SHIMIZU264497f2015-08-25 14:50:12 -070022import org.onosproject.net.PortNumber;
23import org.onosproject.net.driver.HandlerBehaviour;
24
25/**
26 * A HandlerBehaviour to check the capability of VLAN.
27 */
28@Beta
29public interface VlanQuery extends HandlerBehaviour {
30
31 /**
HIGUCHI Yutab7a15d72015-12-15 09:54:40 -080032 * Returns set of VlanIds which can be used at the port.
Sho SHIMIZU264497f2015-08-25 14:50:12 -070033 *
HIGUCHI Yutab7a15d72015-12-15 09:54:40 -080034 * @param port to be checked for the available resources.
35 * @return Set of VlanIds which can be used at the port.
Sho SHIMIZU264497f2015-08-25 14:50:12 -070036 */
HIGUCHI Yutab7a15d72015-12-15 09:54:40 -080037 Set<VlanId> queryVlanIds(PortNumber port);
38
Sho SHIMIZU264497f2015-08-25 14:50:12 -070039}