blob: 5d37987cf02bb0181e3c389f57fc08f9ff14a1b6 [file] [log] [blame]
package org.projectfloodlight.openflow.protocol;
import org.projectfloodlight.openflow.types.PrimitiveSinkable;
/**
* Base interface of all OpenFlow objects (e.g., messages, actions, stats, etc.)
*/
public interface OFObject extends Writeable, PrimitiveSinkable {
OFVersion getVersion();
}