X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=third-party%2Fopenflowj%2Fsrc%2Fmain%2Fjava%2Forg%2Fopenflow%2Fprotocol%2Ffactory%2FOFQueuePropertyFactoryAware.java;fp=third-party%2Fopenflowj%2Fsrc%2Fmain%2Fjava%2Forg%2Fopenflow%2Fprotocol%2Ffactory%2FOFQueuePropertyFactoryAware.java;h=9f1b61f2e35df9d15025ac69d1195a1a564f3fdf;hp=0000000000000000000000000000000000000000;hb=42210c03b0a4c54706320ba9f55794c0abd4d201;hpb=7576b38152b393793b1c9ec3df0ff86685f95236 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 index 0000000000..9f1b61f2e3 --- /dev/null +++ b/third-party/openflowj/src/main/java/org/openflow/protocol/factory/OFQueuePropertyFactoryAware.java @@ -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); +}