Fixed build failure in openflow_netty project
[openflowplugin.git] / openflow-codec / src / main / java / org / openflow / codec / protocol / statistics / table / OFPTableFeaturePropApplyActionsMiss.java
1 package org.openflow.codec.protocol.statistics.table;
2
3 /**
4  * Class defines OFPTFPT_APPLY_ACTIONS_MISS type
5  *
6  * @author AnilGujele
7  *
8  */
9 public class OFPTableFeaturePropApplyActionsMiss extends OFPTableFeaturePropActions {
10
11     /**
12      * constructor
13      */
14     public OFPTableFeaturePropApplyActionsMiss() {
15         super.setOFTableFeaturePropType(OFPTableFeaturePropType.APPLY_ACTIONS_MISS);
16     }
17
18 }