5bb3389b0b77c9fcc82ce8616b63757cc53d93fc
[openflowjava.git] / third-party / openflow-codec / src / main / java / org / openflow / codec / protocol / statistics / table / OFPTableFeaturePropNextTablesMiss.java
1 package org.openflow.codec.protocol.statistics.table;
2
3 /**
4  * class to define OFPTFPT_NEXT_TABLES_MISS
5  *
6  * @author AnilGujele
7  *
8  */
9 public class OFPTableFeaturePropNextTablesMiss extends OFPTableFeaturePropNextTables {
10
11     /**
12      * constructor
13      */
14     public OFPTableFeaturePropNextTablesMiss() {
15         super.setOFTableFeaturePropType(OFPTableFeaturePropType.NEXT_TABLES_MISS);
16     }
17
18 }