Added openflow-codec and openflowj_netty from openflowplugin
[openflowjava.git] / third-party / openflow-codec / src / main / java / org / openflow / codec / protocol / instruction / OFPInstructionApplyActions.java
1 package org.openflow.codec.protocol.instruction;
2
3 /**
4  * apply_actions instruction class
5  *
6  * @author AnilGujele
7  *
8  */
9 public class OFPInstructionApplyActions extends OFPInstructionActions {
10
11     public OFPInstructionApplyActions() {
12         super();
13         super.setOFInstructionType(OFPInstructionType.APPLY_ACTIONS);
14     }
15 }