blob: 544c8e89de42918fd82651abedae42df519cc769 [file] [log] [blame]
Toru Furusawad8929572015-12-01 12:24:59 -08001/*
Brian O'Connora09fe5b2017-08-03 21:12:30 -07002 * Copyright 2015-present Open Networking Foundation
Toru Furusawad8929572015-12-01 12:24:59 -08003 *
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 */
16
17package org.onosproject.net.behaviour;
18
19import com.google.common.annotations.Beta;
20import org.onosproject.net.OchSignal;
21import org.onosproject.net.PortNumber;
22import org.onosproject.net.driver.HandlerBehaviour;
23
Marc De Leenheer622861d2015-12-15 22:52:52 -080024import java.util.Set;
Toru Furusawad8929572015-12-01 12:24:59 -080025
26/**
27 * A HandlerBehaviour to retrieve available wavelength resources.
28 */
29@Beta
30public interface LambdaQuery extends HandlerBehaviour {
31
Toru Furusawad8929572015-12-01 12:24:59 -080032 /**
Marc De Leenheer622861d2015-12-15 22:52:52 -080033 * Returns set of OchSignal instances which can be used at the port.
Toru Furusawad8929572015-12-01 12:24:59 -080034 *
35 * @param port to be checked for the available resources.
Marc De Leenheer622861d2015-12-15 22:52:52 -080036 * @return set of OchSignals which can be used at the port.
Toru Furusawad8929572015-12-01 12:24:59 -080037 */
Marc De Leenheer622861d2015-12-15 22:52:52 -080038 Set<OchSignal> queryLambdas(PortNumber port);
Toru Furusawad8929572015-12-01 12:24:59 -080039}