Initial opendaylight infrastructure commit!!
[controller.git] / third-party / openflowj / src / main / java / org / openflow / protocol / action / OFActionNetworkLayerDestination.java
1 package org.openflow.protocol.action;
2
3 /**
4  *
5  * @author David Erickson (daviderickson@cs.stanford.edu)
6  */
7 public class OFActionNetworkLayerDestination extends OFActionNetworkLayerAddress {
8     public OFActionNetworkLayerDestination() {
9         super();
10         super.setType(OFActionType.SET_NW_DST);
11         super.setLength((short) OFActionNetworkLayerAddress.MINIMUM_LENGTH);
12     }
13 }