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 / OFPActionPushMpls.java
1 package org.openflow.codec.protocol.action;
2
3 /**
4  * Represents an action type OFPAT_PUSH_MPLS
5  *
6  * @author Yugandhar Sarraju (ysarraju@in.ibm.com)
7  */
8 public class OFPActionPushMpls extends OFPActionPush {
9     public OFPActionPushMpls() {
10         super();
11         super.setType(OFPActionType.PUSH_MPLS);
12         super.setLength((short) OFPActionPushMpls.MINIMUM_LENGTH);
13     }
14 }