blob: 5d37987cf02bb0181e3c389f57fc08f9ff14a1b6 [file] [log] [blame]
alshabib1f44e8e2014-08-14 15:19:57 -07001package org.projectfloodlight.openflow.protocol;
2
3import org.projectfloodlight.openflow.types.PrimitiveSinkable;
4
5
6/**
7 * Base interface of all OpenFlow objects (e.g., messages, actions, stats, etc.)
8 */
9public interface OFObject extends Writeable, PrimitiveSinkable {
10 OFVersion getVersion();
11}