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 / factory / OFPMessageFactoryAware.java
1 /**
2  *
3  */
4 package org.openflow.codec.protocol.factory;
5
6 /**
7  * @author Rob Sherwood (rob.sherwood@stanford.edu)
8  *
9  */
10 public interface OFPMessageFactoryAware {
11
12     /**
13      * Sets the message factory for this object
14      *
15      * @param factory
16      */
17     void setMessageFactory(OFPMessageFactory factory);
18 }