blob: 5d37987cf02bb0181e3c389f57fc08f9ff14a1b6 [file] [log] [blame]
Yotam Harcholf3f11152013-09-05 16:47:16 -07001package org.projectfloodlight.openflow.protocol;
2
Andreas Wundsam22ba3af2013-10-04 16:00:30 -07003import org.projectfloodlight.openflow.types.PrimitiveSinkable;
4
Yotam Harcholf3f11152013-09-05 16:47:16 -07005
6/**
7 * Base interface of all OpenFlow objects (e.g., messages, actions, stats, etc.)
8 */
Andreas Wundsam22ba3af2013-10-04 16:00:30 -07009public interface OFObject extends Writeable, PrimitiveSinkable {
Andreas Wundsama0981022013-10-02 18:15:06 -070010 OFVersion getVersion();
Yotam Harcholf3f11152013-09-05 16:47:16 -070011}