9ebd64d989b749c2a12568eeb31548f5f081c5ac
[openflowjava.git] / third-party / openflow-codec / src / main / java / org / openflow / codec / protocol / factory / OFPInstructionFactoryAware.java
1 package org.openflow.codec.protocol.factory;
2
3 /**
4  * Objects implementing this interface are expected to be instantiated with an
5  * instance of an OFPInstructionFactory
6  *
7  * @author AnilGujele
8  */
9 public interface OFPInstructionFactoryAware {
10     /**
11      * Sets the OFPInstructionFactory
12      *
13      * @param instructionFactory
14      */
15     public void setInstructionFactory(OFPInstructionFactory instructionFactory);
16 }