blob: 6f54e5fc436afd2bf4caadd7f1825dc9b0c576e6 [file] [log] [blame]
Yotam Harcholf3f11152013-09-05 16:47:16 -07001package org.projectfloodlight.openflow.protocol;
2
3public enum OFVersion {
4 OF_10(1), OF_11(2), OF_12(3), OF_13(4);
5
6 public final int wireVersion;
7
8 OFVersion(final int wireVersion) {
9 this.wireVersion = wireVersion;
10 }
11
12 public int getWireVersion() {
13 return wireVersion;
14 }
15
16}