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