Initial opendaylight infrastructure commit!!
[controller.git] / third-party / openflowj / src / main / java / org / openflow / protocol / factory / OFQueuePropertyFactoryAware.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 OFQueuePropertyFactory
6  * @author David Erickson (daviderickson@cs.stanford.edu)
7  */
8 public interface OFQueuePropertyFactoryAware {
9     /**
10      * Sets the OFQueuePropertyFactory
11      * @param queuePropertyFactory
12      */
13     public void setQueuePropertyFactory(OFQueuePropertyFactory queuePropertyFactory);
14 }