Merge "Updated pom.xml to build documentation only on jenkins merge-job"
[openflowjava.git] / third-party / openflow-codec / src / main / java / org / openflow / codec / protocol / action / OFPActionPushVLAN.java
1 package org.openflow.codec.protocol.action;
2
3 /**
4  * Represents an action type OFPAT_PUSH_VLAN
5  *
6  * @author Yugandhar Sarraju (ysarraju@in.ibm.com)
7  */
8 public class OFPActionPushVLAN extends OFPActionPush {
9     public OFPActionPushVLAN() {
10         super();
11         super.setType(OFPActionType.PUSH_VLAN);
12         super.setLength((short) OFPActionPushVLAN.MINIMUM_LENGTH);
13     }
14 }