blob: 0c54fdc2507eaedf70bf8c291c694af19d0d5571 [file] [log] [blame]
Yotam Harcholf3f11152013-09-05 16:47:16 -07001package org.projectfloodlight.openflow.protocol;
2
3public enum OFVersion {
Andreas Wundsam439cbe42014-10-10 21:29:32 -07004 OF_10(1), OF_11(2), OF_12(3), OF_13(4), OF_14(5);
Yotam Harcholf3f11152013-09-05 16:47:16 -07005
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}