blob: 852b803a503191e425798237818e4faf3f617015 [file] [log] [blame]
Yotam Harcholf3f11152013-09-05 16:47:16 -07001package org.projectfloodlight.openflow.protocol;
2
3
4/**
5 * Base interface of all OpenFlow objects (e.g., messages, actions, stats, etc.)
6 */
7public interface OFObject extends Writeable {
Andreas Wundsama0981022013-10-02 18:15:06 -07008 OFVersion getVersion();
Yotam Harcholf3f11152013-09-05 16:47:16 -07009}