blob: 42f86380243eead866149dab3925a64f96eaa882 [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
yjimmyy646aa022016-07-05 12:09:50 -070018import java.util.Collections;
HIGUCHI Yuta24d9dc02016-01-08 22:12:10 -080019import java.util.List;
20
yjimmyy646aa022016-07-05 12:09:50 -070021import org.onosproject.net.device.PortDescription;
22import org.projectfloodlight.openflow.protocol.OFMessage;
HIGUCHI Yuta24d9dc02016-01-08 22:12:10 -080023import org.projectfloodlight.openflow.protocol.OFPortDesc;
24
25import com.google.common.annotations.Beta;
26
Ayaka Koshibe5460d622015-05-14 12:19:19 -070027/**
28 * A marker interface for optical switches, which require the ability to pass
29 * port information to a Device provider.
30 */
31public interface OpenFlowOpticalSwitch extends OpenFlowSwitch, WithTypedPorts {
HIGUCHI Yuta24d9dc02016-01-08 22:12:10 -080032
33 // OpenFlowOpticalSwitch only returns Ethernet ports.
34 // This is a limitation due to issue described in ONOS-3796.
35 // This method should return all port type once the limitation is fixed.
36 /**
37 * Returns a list of standard (Ethernet) ports.
38 *
39 * @return List of standard (Ethernet) ports
40 */
41 @Beta
42 @Override
43 abstract List<OFPortDesc> getPorts();
yjimmyy646aa022016-07-05 12:09:50 -070044
45 /**
46 * Returns updated PortDescriptions built from experimenter message
47 * received from device.
48 *
49 * @param msg OpenFlow message from device.
50 * @return List of updated PortDescriptions.
51 */
52 default List<PortDescription> processExpPortStats(OFMessage msg) {
53 return Collections.emptyList();
54 }
Ayaka Koshibe5460d622015-05-14 12:19:19 -070055}