blob: 1c9d9d1c1db99a5e2b1abfef691c87d15560e696 [file] [log] [blame]
Praseed Balakrishnanfa21be12014-07-15 14:42:26 -07001package net.onrc.onos.core.topology;
2
3public enum LinkType {
4 /**
5 * Ethernet link is link between {@link PortType.ETHERNET_PORT}.
6 */
7 ETHERNET_LINK,
8 /**
9 * WDM Link is link between {@link PortType.WDM_PORT}.
10 */
11 WDM_LINK,
12 /**
13 * This link is link between {@link PortType.ETHERNET_PORT} and {@link PortType.TRANSPONDER_PORT}.
14 */
15 PACKET_TPORT_LINK;
16}