blob: c1e44567a6e7a5b95dc16a1e81058b509bc1d9f9 [file] [log] [blame]
Andreas Wundsam40e14f72013-05-06 14:49:08 -07001package org.openflow.protocol;
2
Andreas Wundsam40e14f72013-05-06 14:49:08 -07003public interface OFMessage {
4 int getXid();
5
Andreas Wundsam40e14f72013-05-06 14:49:08 -07006 OFType getType();
7
8 OFVersion getVersion();
Andreas Wundsam27303462013-07-16 12:52:35 -07009
10 interface Builder {
11
12 }
Andreas Wundsam40e14f72013-05-06 14:49:08 -070013}