Bug 1029: Remove dead code: samples/clustersession
[controller.git] / opendaylight / sal / api / src / main / java / org / opendaylight / controller / sal / utils / GUIField.java
1
2 /*
3  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
4  *
5  * This program and the accompanying materials are made available under the
6  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
7  * and is available at http://www.eclipse.org/legal/epl-v10.html
8  */
9
10 package org.opendaylight.controller.sal.utils;
11
12 /**
13  * GUI field constants
14  *
15  *
16  *
17  */
18 public enum GUIField {
19     USER("User"), PASSWORD("Password"), ROLE("Role"), SERVERIP("Server address"), SERVERSECRET(
20             "Server secret"), SERVERPROTOCOL("Server protocol"), NAME("Name"), CONTAINER(
21             "Container"), SUBNET("Subnet"), GATEWAYIP("Gateway IP Address/Mask"), NODE(
22             "Node"), NODEID("Node ID"), NODEMAC("Node MAC Address"), NODENAME(
23             "Node Name"), SRCNODE("Source Node"), DSTNODE("Destination Node"), SRCPORT(
24             "Source Port"), DSTPORT("Destination Port"), PORTS("Ports"), NODEPORTS(
25             "Node/Ports"), SPANPORTS("Span Ports"), TIER("Tier"), MODE("Mode"), INPUTPORT(
26             "Input Port"), ETHERTYPE("Ether Type"), DLSRCADDRESS("Source MAC"), DLDSTADDRESS(
27             "Dest MAC"), VLANID("Vlan Id"), VLANPRIO("Vlan Priority"), NWSRCADDRESS(
28             "Source IP"), NWDSTADDRESS("Dest IP"), NWPROTOCOL("Protocol"), NWPROTOCOLSHORT(
29             "Proto"), NWTOSBITS("TOS"), TPSRCPORT("Transport Source Port"), TPDSTPORT(
30             "Transport Dest Port"), TPSRCPORTSHORT("Source L4 Port"), TPDSTPORTSHORT(
31             "Dest L4 Port"), METRIC("Metric"), STATUS("Status"), TAG("Tag"), TAGS(
32             "Tags"), STATICVLAN("Static Vlan"), PRIORITY("Priority"), PORTGROUP(
33             "Port Group"), COOKIE("Cookie"), ACTIONS("Actions"), ACTIVE(
34             "Active"), IDLETIMEOUT("Idle Time Out"), HARDTIMEOUT(
35             "Hard Time Out"), INHARDWARE("Install on Switch"), STATICROUTE(
36             "Static Route"), NEXTHOPTYPE("NextHop Type"), NEXTHOP(
37             "NextHop address");
38
39     private GUIField(String name) {
40         this.name = name;
41     }
42
43     private String name;
44
45     public String toString() {
46         return name;
47     }
48 }