blob: 6b5e6ca398b1da9492e1ec21b0889809330e0c4d [file] [log] [blame]
Praseed Balakrishnanfa21be12014-07-15 14:42:26 -07001package net.onrc.onos.core.topology;
2
3public enum PortType {
4 /**
5 * Ethernet port is a port on Ethernet Switch.
6 */
7 ETHERNET_PORT,
8 /**
9 * WDM port is port connecting two Optical Switches,
10 * WDM port is only connected to another WDM port.
11 */
12 WDM_PORT,
13 /**
14 * Transponder port is a port on Optical Switch, which will be connected to Packet/Ethernet Switch.
15 * Transponder port is connected to Ethernet port.
16 */
17 TRANSPONDER_PORT;
18}