Fix checkstyle warnings in netconf-cli
[controller.git] / third-party / openflowj / src / main / java / org / openflow / protocol / factory / OFActionFactoryAware.java
1 package org.openflow.protocol.factory;
2
3 /**
4  * Objects implementing this interface are expected to be instantiated with an
5  * instance of an OFActionFactory
6  * @author David Erickson (daviderickson@cs.stanford.edu)
7  */
8 public interface OFActionFactoryAware {
9     /**
10      * Sets the OFActionFactory
11      * @param actionFactory
12      */
13     public void setActionFactory(OFActionFactory actionFactory);
14 }