blob: 34d4f887e0e58a4f03ec9f0b83b28e570a8f9575 [file] [log] [blame]
Thomas Vachuska58de4162015-09-10 16:15:33 -07001/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2015-present Open Networking Laboratory
Thomas Vachuska58de4162015-09-10 16:15:33 -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 */
Ayaka Koshibe5460d622015-05-14 12:19:19 -070016package org.onosproject.openflow.controller;
17
HIGUCHI Yuta24d9dc02016-01-08 22:12:10 -080018import java.util.List;
19
20import org.projectfloodlight.openflow.protocol.OFPortDesc;
21
22import com.google.common.annotations.Beta;
23
Ayaka Koshibe5460d622015-05-14 12:19:19 -070024/**
25 * A marker interface for optical switches, which require the ability to pass
26 * port information to a Device provider.
27 */
28public interface OpenFlowOpticalSwitch extends OpenFlowSwitch, WithTypedPorts {
HIGUCHI Yuta24d9dc02016-01-08 22:12:10 -080029
30 // OpenFlowOpticalSwitch only returns Ethernet ports.
31 // This is a limitation due to issue described in ONOS-3796.
32 // This method should return all port type once the limitation is fixed.
33 /**
34 * Returns a list of standard (Ethernet) ports.
35 *
36 * @return List of standard (Ethernet) ports
37 */
38 @Beta
39 @Override
40 abstract List<OFPortDesc> getPorts();
Ayaka Koshibe5460d622015-05-14 12:19:19 -070041}