Initial opendaylight infrastructure commit!!
[controller.git] / third-party / openflowj / src / main / java / org / openflow / protocol / factory / OFQueuePropertyFactoryAware.java
diff --git a/third-party/openflowj/src/main/java/org/openflow/protocol/factory/OFQueuePropertyFactoryAware.java b/third-party/openflowj/src/main/java/org/openflow/protocol/factory/OFQueuePropertyFactoryAware.java
new file mode 100644 (file)
index 0000000..9f1b61f
--- /dev/null
@@ -0,0 +1,14 @@
+package org.openflow.protocol.factory;
+
+/**
+ * Objects implementing this interface are expected to be instantiated with an
+ * instance of an OFQueuePropertyFactory
+ * @author David Erickson (daviderickson@cs.stanford.edu)
+ */
+public interface OFQueuePropertyFactoryAware {
+    /**
+     * Sets the OFQueuePropertyFactory
+     * @param queuePropertyFactory
+     */
+    public void setQueuePropertyFactory(OFQueuePropertyFactory queuePropertyFactory);
+}