Bug 1811 Fixed the pipeline by moving L2Fwd to the end.
[ovsdb.git] / openstack / net-virt-providers / src / main / java / org / opendaylight / ovsdb / openstack / netvirt / providers / openflow13 / Service.java
1 /*
2  * Copyright (C) 2014 Red Hat, Inc.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  *
8  * Authors : Madhu Venugopal
9  */
10
11 package org.opendaylight.ovsdb.openstack.netvirt.providers.openflow13;
12
13 public enum Service {
14
15     CLASSIFIER ((short) 0, "Classifier"),
16     DIRECTOR ((short) 10, "Director"),
17     ARP_RESPONDER ((short) 20, "Distributed ARP Responder"),
18     INBOUND_NAT ((short) 30, "DNAT for inbound floating-ip traffic"),
19     INGRESS_ACL ((short) 40, "Ingress Acces-control. Typically Openstack Egress Security group policies are applied here."),
20     LOAD_BALANCER ((short) 50, "Distributed LBaaS"),
21     ROUTING ((short) 60, "Distributed Virtual Routing (DVR)"),
22     L3_FORWARDING ((short) 70, "Layer 3 forwarding/lookup service"),
23     L2_REWRITE ((short) 80, "Layer2 rewrite service"),
24     EGRESS_ACL ((short) 90, "Egress Acces-control.Typically Openstack Ingress Security group policies are applied here."),
25     OUTBOUND_NAT ((short) 100, "SNAT for traffic accessing external network"),
26     L2_FORWARDING ((short) 110, "Layer2 mac,vlan based forwarding");
27
28     short table;
29     String description;
30
31     private Service (short table, String description)  {
32         this.table = table;
33         this.description = description;
34     }
35
36     public short getTable() {
37         return table;
38     }
39
40     public String getDescription() {
41         return description;
42     }
43 }