blob: cde6599d9240c18e4cec4aca35c8c5d8752e75ba [file] [log] [blame]
tom0eb04ca2014-08-25 14:34:51 -07001// Copyright (c) 2008 The Board of Trustees of The Leland Stanford Junior University
2// Copyright (c) 2011, 2012 Open Networking Foundation
3// Copyright (c) 2012, 2013 Big Switch Networks, Inc.
4// This library was generated by the LoxiGen Compiler.
5// See the file LICENSE.txt which should have been included in the source distribution
6
7// Automatically generated by LOXI from template of_factory_class.java
8// Do not modify
9
10package org.projectfloodlight.openflow.protocol.ver10;
11
12import org.projectfloodlight.openflow.protocol.*;
13import org.projectfloodlight.openflow.protocol.action.*;
14import org.projectfloodlight.openflow.protocol.actionid.*;
15import org.projectfloodlight.openflow.protocol.bsntlv.*;
16import org.projectfloodlight.openflow.protocol.errormsg.*;
17import org.projectfloodlight.openflow.protocol.meterband.*;
18import org.projectfloodlight.openflow.protocol.instruction.*;
19import org.projectfloodlight.openflow.protocol.instructionid.*;
20import org.projectfloodlight.openflow.protocol.match.*;
21import org.projectfloodlight.openflow.protocol.oxm.*;
22import org.projectfloodlight.openflow.protocol.queueprop.*;
23import org.projectfloodlight.openflow.types.*;
24import org.projectfloodlight.openflow.util.*;
25import org.projectfloodlight.openflow.exceptions.*;
26import java.util.Set;
27
28
29public class OFActionIdsVer10 implements OFActionIds {
30 public final static OFActionIdsVer10 INSTANCE = new OFActionIdsVer10();
31
32
33
34
35 public OFActionIdBsnChecksum bsnChecksum() {
36 throw new UnsupportedOperationException("OFActionIdBsnChecksum not supported in version 1.0");
37 }
38
39 public OFActionIdBsnMirror bsnMirror() {
40 throw new UnsupportedOperationException("OFActionIdBsnMirror not supported in version 1.0");
41 }
42
43 public OFActionIdBsnSetTunnelDst bsnSetTunnelDst() {
44 throw new UnsupportedOperationException("OFActionIdBsnSetTunnelDst not supported in version 1.0");
45 }
46
47 public OFActionIdCopyTtlIn copyTtlIn() {
48 throw new UnsupportedOperationException("OFActionIdCopyTtlIn not supported in version 1.0");
49 }
50
51 public OFActionIdCopyTtlOut copyTtlOut() {
52 throw new UnsupportedOperationException("OFActionIdCopyTtlOut not supported in version 1.0");
53 }
54
55 public OFActionIdDecMplsTtl decMplsTtl() {
56 throw new UnsupportedOperationException("OFActionIdDecMplsTtl not supported in version 1.0");
57 }
58
59 public OFActionIdDecNwTtl decNwTtl() {
60 throw new UnsupportedOperationException("OFActionIdDecNwTtl not supported in version 1.0");
61 }
62
63 public OFActionIdGroup group() {
64 throw new UnsupportedOperationException("OFActionIdGroup not supported in version 1.0");
65 }
66
67 public OFActionIdNiciraDecTtl niciraDecTtl() {
68 throw new UnsupportedOperationException("OFActionIdNiciraDecTtl not supported in version 1.0");
69 }
70
71 public OFActionIdOutput output() {
72 throw new UnsupportedOperationException("OFActionIdOutput not supported in version 1.0");
73 }
74
75 public OFActionIdPopMpls popMpls() {
76 throw new UnsupportedOperationException("OFActionIdPopMpls not supported in version 1.0");
77 }
78
79 public OFActionIdPopPbb popPbb() {
80 throw new UnsupportedOperationException("OFActionIdPopPbb not supported in version 1.0");
81 }
82
83 public OFActionIdPopVlan popVlan() {
84 throw new UnsupportedOperationException("OFActionIdPopVlan not supported in version 1.0");
85 }
86
87 public OFActionIdPushMpls pushMpls() {
88 throw new UnsupportedOperationException("OFActionIdPushMpls not supported in version 1.0");
89 }
90
91 public OFActionIdPushPbb pushPbb() {
92 throw new UnsupportedOperationException("OFActionIdPushPbb not supported in version 1.0");
93 }
94
95 public OFActionIdPushVlan pushVlan() {
96 throw new UnsupportedOperationException("OFActionIdPushVlan not supported in version 1.0");
97 }
98
99 public OFActionIdSetField setField() {
100 throw new UnsupportedOperationException("OFActionIdSetField not supported in version 1.0");
101 }
102
103 public OFActionIdSetMplsTtl setMplsTtl() {
104 throw new UnsupportedOperationException("OFActionIdSetMplsTtl not supported in version 1.0");
105 }
106
107 public OFActionIdSetNwTtl setNwTtl() {
108 throw new UnsupportedOperationException("OFActionIdSetNwTtl not supported in version 1.0");
109 }
110
111 public OFActionIdSetQueue setQueue() {
112 throw new UnsupportedOperationException("OFActionIdSetQueue not supported in version 1.0");
113 }
114
115 public OFMessageReader<OFActionId> getReader() {
116 throw new UnsupportedOperationException("Reader<OFActionId> not supported in version 1.0");
117 }
118
119
120 public OFVersion getVersion() {
121 return OFVersion.OF_10;
122 }
123}