da14ad3e5a4d0c8a64033a63ea1a0076ce24ac76
[openflowjava.git] / third-party / openflow-codec / src / main / java / org / openflow / codec / protocol / factory / OFPStatisticsFactoryAware.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 OFPStatisticsFactory
6  *
7  * @author David Erickson (daviderickson@cs.stanford.edu)
8  */
9 public interface OFPStatisticsFactoryAware {
10     /**
11      * Sets the OFPStatisticsFactory
12      *
13      * @param statisticsFactory
14      */
15     public void setStatisticsFactory(OFPStatisticsFactory statisticsFactory);
16 }