Performacne improvements via adding a netty-based openflowj and openflow plugin;...
[controller.git] / third-party / openflowj_netty / src / main / java / org / openflow / protocol / OFPort.java
1 /**
2 *    Copyright (c) 2008 The Board of Trustees of The Leland Stanford Junior
3 *    University
4
5 *    Licensed under the Apache License, Version 2.0 (the "License"); you may
6 *    not use this file except in compliance with the License. You may obtain
7 *    a copy of the License at
8 *
9 *         http://www.apache.org/licenses/LICENSE-2.0
10 *
11 *    Unless required by applicable law or agreed to in writing, software
12 *    distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13 *    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14 *    License for the specific language governing permissions and limitations
15 *    under the License.
16 **/
17
18 package org.openflow.protocol;
19
20 public enum OFPort {
21     OFPP_MAX                ((short)0xff00),
22     OFPP_IN_PORT            ((short)0xfff8),
23     OFPP_TABLE              ((short)0xfff9),
24     OFPP_NORMAL             ((short)0xfffa),
25     OFPP_FLOOD              ((short)0xfffb),
26     OFPP_ALL                ((short)0xfffc),
27     OFPP_CONTROLLER         ((short)0xfffd),
28     OFPP_LOCAL              ((short)0xfffe),
29     OFPP_NONE               ((short)0xffff);
30
31     protected short value;
32
33     private OFPort(short value) {
34         this.value = value;
35     }
36
37     /**
38      * @return the value
39      */
40     public short getValue() {
41         return value;
42     }
43 }