Merge "Bug 2347: DOMConcurrentDataCommitCoordinator uses wrong phase name"
[controller.git] / third-party / openflowj / src / main / java / org / openflow / protocol / action / OFActionTransportLayerSource.java
1 package org.openflow.protocol.action;
2
3 /**
4  *
5  * @author David Erickson (daviderickson@cs.stanford.edu)
6  */
7 public class OFActionTransportLayerSource extends OFActionTransportLayer {
8     public OFActionTransportLayerSource() {
9         super();
10         super.setType(OFActionType.SET_TP_SRC);
11         super.setLength((short) OFActionTransportLayer.MINIMUM_LENGTH);
12     }
13 }