blob: 4494b6ae14d8b0af45a750e2b19dbedcb5028a70 [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.ver11;
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;
27import java.util.List;
28import org.projectfloodlight.openflow.protocol.OFOxmList;
29
30
31public class OFFactoryVer11 implements OFFactory {
32 public final static OFFactoryVer11 INSTANCE = new OFFactoryVer11();
33
34 private final XidGenerator xidGenerator = XidGenerators.global();
35
36 public OFActions actions() {
37 return OFActionsVer11.INSTANCE;
38 }
39 public OFInstructions instructions() {
40 return OFInstructionsVer11.INSTANCE;
41 }
42 public OFMeterBands meterBands() {
43 return OFMeterBandsVer11.INSTANCE;
44 }
45 public OFOxms oxms() {
46 return OFOxmsVer11.INSTANCE;
47 }
48 public OFQueueProps queueProps() {
49 return OFQueuePropsVer11.INSTANCE;
50 }
51 public OFErrorMsgs errorMsgs() {
52 return OFErrorMsgsVer11.INSTANCE;
53 }
54 public OFActionIds actionIds() {
55 return OFActionIdsVer11.INSTANCE;
56 }
57 public OFInstructionIds instructionIds() {
58 return OFInstructionIdsVer11.INSTANCE;
59 }
60 public OFBsnTlvs bsnTlvs() {
61 return OFBsnTlvsVer11.INSTANCE;
62 }
63
64
65 public OFAggregateStatsReply.Builder buildAggregateStatsReply() {
66 return new OFAggregateStatsReplyVer11.Builder().setXid(nextXid());
67 }
68
69 public OFAggregateStatsRequest.Builder buildAggregateStatsRequest() {
70 return new OFAggregateStatsRequestVer11.Builder().setXid(nextXid());
71 }
72
73 public OFBarrierReply.Builder buildBarrierReply() {
74 return new OFBarrierReplyVer11.Builder().setXid(nextXid());
75 }
76 public OFBarrierReply barrierReply() {
77 return new OFBarrierReplyVer11(
78 nextXid()
79 );
80 }
81
82 public OFBarrierRequest.Builder buildBarrierRequest() {
83 return new OFBarrierRequestVer11.Builder().setXid(nextXid());
84 }
85 public OFBarrierRequest barrierRequest() {
86 return new OFBarrierRequestVer11(
87 nextXid()
88 );
89 }
90
91 public OFBsnBwClearDataReply.Builder buildBsnBwClearDataReply() {
92 return new OFBsnBwClearDataReplyVer11.Builder().setXid(nextXid());
93 }
94 public OFBsnBwClearDataReply bsnBwClearDataReply(long status) {
95 return new OFBsnBwClearDataReplyVer11(
96 nextXid(),
97 status
98 );
99 }
100
101 public OFBsnBwClearDataRequest.Builder buildBsnBwClearDataRequest() {
102 return new OFBsnBwClearDataRequestVer11.Builder().setXid(nextXid());
103 }
104 public OFBsnBwClearDataRequest bsnBwClearDataRequest() {
105 return new OFBsnBwClearDataRequestVer11(
106 nextXid()
107 );
108 }
109
110 public OFBsnBwEnableGetReply.Builder buildBsnBwEnableGetReply() {
111 return new OFBsnBwEnableGetReplyVer11.Builder().setXid(nextXid());
112 }
113 public OFBsnBwEnableGetReply bsnBwEnableGetReply(long enabled) {
114 return new OFBsnBwEnableGetReplyVer11(
115 nextXid(),
116 enabled
117 );
118 }
119
120 public OFBsnBwEnableGetRequest.Builder buildBsnBwEnableGetRequest() {
121 return new OFBsnBwEnableGetRequestVer11.Builder().setXid(nextXid());
122 }
123 public OFBsnBwEnableGetRequest bsnBwEnableGetRequest() {
124 return new OFBsnBwEnableGetRequestVer11(
125 nextXid()
126 );
127 }
128
129 public OFBsnBwEnableSetReply.Builder buildBsnBwEnableSetReply() {
130 return new OFBsnBwEnableSetReplyVer11.Builder().setXid(nextXid());
131 }
132
133 public OFBsnBwEnableSetRequest.Builder buildBsnBwEnableSetRequest() {
134 return new OFBsnBwEnableSetRequestVer11.Builder().setXid(nextXid());
135 }
136 public OFBsnBwEnableSetRequest bsnBwEnableSetRequest(long enable) {
137 return new OFBsnBwEnableSetRequestVer11(
138 nextXid(),
139 enable
140 );
141 }
142
143 public OFBsnGetInterfacesReply.Builder buildBsnGetInterfacesReply() {
144 return new OFBsnGetInterfacesReplyVer11.Builder().setXid(nextXid());
145 }
146 public OFBsnGetInterfacesReply bsnGetInterfacesReply(List<OFBsnInterface> interfaces) {
147 return new OFBsnGetInterfacesReplyVer11(
148 nextXid(),
149 interfaces
150 );
151 }
152
153 public OFBsnGetInterfacesRequest.Builder buildBsnGetInterfacesRequest() {
154 return new OFBsnGetInterfacesRequestVer11.Builder().setXid(nextXid());
155 }
156 public OFBsnGetInterfacesRequest bsnGetInterfacesRequest() {
157 return new OFBsnGetInterfacesRequestVer11(
158 nextXid()
159 );
160 }
161
162 public OFBsnGetIpMaskReply.Builder buildBsnGetIpMaskReply() {
163 throw new UnsupportedOperationException("OFBsnGetIpMaskReply not supported in version 1.1");
164 }
165
166 public OFBsnGetIpMaskRequest.Builder buildBsnGetIpMaskRequest() {
167 throw new UnsupportedOperationException("OFBsnGetIpMaskRequest not supported in version 1.1");
168 }
169 public OFBsnGetIpMaskRequest bsnGetIpMaskRequest(short index) {
170 throw new UnsupportedOperationException("OFBsnGetIpMaskRequest not supported in version 1.1");
171 }
172
173 public OFBsnGetL2TableReply.Builder buildBsnGetL2TableReply() {
174 throw new UnsupportedOperationException("OFBsnGetL2TableReply not supported in version 1.1");
175 }
176
177 public OFBsnGetL2TableRequest.Builder buildBsnGetL2TableRequest() {
178 throw new UnsupportedOperationException("OFBsnGetL2TableRequest not supported in version 1.1");
179 }
180 public OFBsnGetL2TableRequest bsnGetL2TableRequest() {
181 throw new UnsupportedOperationException("OFBsnGetL2TableRequest not supported in version 1.1");
182 }
183
184 public OFBsnGetMirroringReply.Builder buildBsnGetMirroringReply() {
185 return new OFBsnGetMirroringReplyVer11.Builder().setXid(nextXid());
186 }
187 public OFBsnGetMirroringReply bsnGetMirroringReply(short reportMirrorPorts) {
188 return new OFBsnGetMirroringReplyVer11(
189 nextXid(),
190 reportMirrorPorts
191 );
192 }
193
194 public OFBsnGetMirroringRequest.Builder buildBsnGetMirroringRequest() {
195 return new OFBsnGetMirroringRequestVer11.Builder().setXid(nextXid());
196 }
197 public OFBsnGetMirroringRequest bsnGetMirroringRequest(short reportMirrorPorts) {
198 return new OFBsnGetMirroringRequestVer11(
199 nextXid(),
200 reportMirrorPorts
201 );
202 }
203
204 public OFBsnHybridGetReply.Builder buildBsnHybridGetReply() {
205 throw new UnsupportedOperationException("OFBsnHybridGetReply not supported in version 1.1");
206 }
207
208 public OFBsnHybridGetRequest.Builder buildBsnHybridGetRequest() {
209 throw new UnsupportedOperationException("OFBsnHybridGetRequest not supported in version 1.1");
210 }
211 public OFBsnHybridGetRequest bsnHybridGetRequest() {
212 throw new UnsupportedOperationException("OFBsnHybridGetRequest not supported in version 1.1");
213 }
214
215 public OFBsnInterface.Builder buildBsnInterface() {
216 return new OFBsnInterfaceVer11.Builder();
217 }
218
219 public OFBsnPduRxReply.Builder buildBsnPduRxReply() {
220 return new OFBsnPduRxReplyVer11.Builder().setXid(nextXid());
221 }
222
223 public OFBsnPduRxRequest.Builder buildBsnPduRxRequest() {
224 return new OFBsnPduRxRequestVer11.Builder().setXid(nextXid());
225 }
226
227 public OFBsnPduRxTimeout.Builder buildBsnPduRxTimeout() {
228 return new OFBsnPduRxTimeoutVer11.Builder().setXid(nextXid());
229 }
230
231 public OFBsnPduTxReply.Builder buildBsnPduTxReply() {
232 return new OFBsnPduTxReplyVer11.Builder().setXid(nextXid());
233 }
234
235 public OFBsnPduTxRequest.Builder buildBsnPduTxRequest() {
236 return new OFBsnPduTxRequestVer11.Builder().setXid(nextXid());
237 }
238
239 public OFBsnSetIpMask.Builder buildBsnSetIpMask() {
240 throw new UnsupportedOperationException("OFBsnSetIpMask not supported in version 1.1");
241 }
242
243 public OFBsnSetL2TableReply.Builder buildBsnSetL2TableReply() {
244 throw new UnsupportedOperationException("OFBsnSetL2TableReply not supported in version 1.1");
245 }
246
247 public OFBsnSetL2TableRequest.Builder buildBsnSetL2TableRequest() {
248 throw new UnsupportedOperationException("OFBsnSetL2TableRequest not supported in version 1.1");
249 }
250
251 public OFBsnSetMirroring.Builder buildBsnSetMirroring() {
252 return new OFBsnSetMirroringVer11.Builder().setXid(nextXid());
253 }
254 public OFBsnSetMirroring bsnSetMirroring(short reportMirrorPorts) {
255 return new OFBsnSetMirroringVer11(
256 nextXid(),
257 reportMirrorPorts
258 );
259 }
260
261 public OFBsnSetPktinSuppressionReply.Builder buildBsnSetPktinSuppressionReply() {
262 return new OFBsnSetPktinSuppressionReplyVer11.Builder().setXid(nextXid());
263 }
264 public OFBsnSetPktinSuppressionReply bsnSetPktinSuppressionReply(long status) {
265 return new OFBsnSetPktinSuppressionReplyVer11(
266 nextXid(),
267 status
268 );
269 }
270
271 public OFBsnSetPktinSuppressionRequest.Builder buildBsnSetPktinSuppressionRequest() {
272 return new OFBsnSetPktinSuppressionRequestVer11.Builder().setXid(nextXid());
273 }
274
275 public OFBsnShellCommand.Builder buildBsnShellCommand() {
276 throw new UnsupportedOperationException("OFBsnShellCommand not supported in version 1.1");
277 }
278
279 public OFBsnShellOutput.Builder buildBsnShellOutput() {
280 throw new UnsupportedOperationException("OFBsnShellOutput not supported in version 1.1");
281 }
282 public OFBsnShellOutput bsnShellOutput(byte[] data) {
283 throw new UnsupportedOperationException("OFBsnShellOutput not supported in version 1.1");
284 }
285
286 public OFBsnShellStatus.Builder buildBsnShellStatus() {
287 throw new UnsupportedOperationException("OFBsnShellStatus not supported in version 1.1");
288 }
289 public OFBsnShellStatus bsnShellStatus(long status) {
290 throw new UnsupportedOperationException("OFBsnShellStatus not supported in version 1.1");
291 }
292
293 public OFBsnVirtualPortCreateReply.Builder buildBsnVirtualPortCreateReply() {
294 return new OFBsnVirtualPortCreateReplyVer11.Builder().setXid(nextXid());
295 }
296
297 public OFBsnVirtualPortCreateRequest.Builder buildBsnVirtualPortCreateRequest() {
298 return new OFBsnVirtualPortCreateRequestVer11.Builder().setXid(nextXid());
299 }
300 public OFBsnVirtualPortCreateRequest bsnVirtualPortCreateRequest(OFBsnVport vport) {
301 return new OFBsnVirtualPortCreateRequestVer11(
302 nextXid(),
303 vport
304 );
305 }
306
307 public OFBsnVirtualPortRemoveReply.Builder buildBsnVirtualPortRemoveReply() {
308 return new OFBsnVirtualPortRemoveReplyVer11.Builder().setXid(nextXid());
309 }
310 public OFBsnVirtualPortRemoveReply bsnVirtualPortRemoveReply(long status) {
311 return new OFBsnVirtualPortRemoveReplyVer11(
312 nextXid(),
313 status
314 );
315 }
316
317 public OFBsnVirtualPortRemoveRequest.Builder buildBsnVirtualPortRemoveRequest() {
318 return new OFBsnVirtualPortRemoveRequestVer11.Builder().setXid(nextXid());
319 }
320 public OFBsnVirtualPortRemoveRequest bsnVirtualPortRemoveRequest(long vportNo) {
321 return new OFBsnVirtualPortRemoveRequestVer11(
322 nextXid(),
323 vportNo
324 );
325 }
326
327 public OFBsnVportL2Gre.Builder buildBsnVportL2Gre() {
328 return new OFBsnVportL2GreVer11.Builder();
329 }
330
331 public OFBsnVportQInQ.Builder buildBsnVportQInQ() {
332 return new OFBsnVportQInQVer11.Builder();
333 }
334
335 public OFDescStatsReply.Builder buildDescStatsReply() {
336 return new OFDescStatsReplyVer11.Builder().setXid(nextXid());
337 }
338
339 public OFDescStatsRequest.Builder buildDescStatsRequest() {
340 return new OFDescStatsRequestVer11.Builder().setXid(nextXid());
341 }
342 public OFDescStatsRequest descStatsRequest(Set<OFStatsRequestFlags> flags) {
343 return new OFDescStatsRequestVer11(
344 nextXid(),
345 flags
346 );
347 }
348
349 public OFEchoReply.Builder buildEchoReply() {
350 return new OFEchoReplyVer11.Builder().setXid(nextXid());
351 }
352 public OFEchoReply echoReply(byte[] data) {
353 return new OFEchoReplyVer11(
354 nextXid(),
355 data
356 );
357 }
358
359 public OFEchoRequest.Builder buildEchoRequest() {
360 return new OFEchoRequestVer11.Builder().setXid(nextXid());
361 }
362 public OFEchoRequest echoRequest(byte[] data) {
363 return new OFEchoRequestVer11(
364 nextXid(),
365 data
366 );
367 }
368
369 public OFFeaturesReply.Builder buildFeaturesReply() {
370 return new OFFeaturesReplyVer11.Builder().setXid(nextXid());
371 }
372
373 public OFFeaturesRequest.Builder buildFeaturesRequest() {
374 return new OFFeaturesRequestVer11.Builder().setXid(nextXid());
375 }
376 public OFFeaturesRequest featuresRequest() {
377 return new OFFeaturesRequestVer11(
378 nextXid()
379 );
380 }
381
382 public OFFlowAdd.Builder buildFlowAdd() {
383 return new OFFlowAddVer11.Builder().setXid(nextXid());
384 }
385
386 public OFFlowDelete.Builder buildFlowDelete() {
387 return new OFFlowDeleteVer11.Builder().setXid(nextXid());
388 }
389
390 public OFFlowDeleteStrict.Builder buildFlowDeleteStrict() {
391 return new OFFlowDeleteStrictVer11.Builder().setXid(nextXid());
392 }
393
394 public OFFlowModify.Builder buildFlowModify() {
395 return new OFFlowModifyVer11.Builder().setXid(nextXid());
396 }
397
398 public OFFlowModifyStrict.Builder buildFlowModifyStrict() {
399 return new OFFlowModifyStrictVer11.Builder().setXid(nextXid());
400 }
401
402 public OFFlowRemoved.Builder buildFlowRemoved() {
403 return new OFFlowRemovedVer11.Builder().setXid(nextXid());
404 }
405
406 public OFFlowStatsEntry.Builder buildFlowStatsEntry() {
407 return new OFFlowStatsEntryVer11.Builder();
408 }
409
410 public OFFlowStatsReply.Builder buildFlowStatsReply() {
411 return new OFFlowStatsReplyVer11.Builder().setXid(nextXid());
412 }
413
414 public OFFlowStatsRequest.Builder buildFlowStatsRequest() {
415 return new OFFlowStatsRequestVer11.Builder().setXid(nextXid());
416 }
417
418 public OFGetConfigReply.Builder buildGetConfigReply() {
419 return new OFGetConfigReplyVer11.Builder().setXid(nextXid());
420 }
421
422 public OFGetConfigRequest.Builder buildGetConfigRequest() {
423 return new OFGetConfigRequestVer11.Builder().setXid(nextXid());
424 }
425 public OFGetConfigRequest getConfigRequest() {
426 return new OFGetConfigRequestVer11(
427 nextXid()
428 );
429 }
430
431 public OFHello.Builder buildHello() {
432 return new OFHelloVer11.Builder().setXid(nextXid());
433 }
434 public OFHello hello(List<OFHelloElem> elements) {
435 return new OFHelloVer11(
436 nextXid()
437 );
438 }
439
440 public OFMatchV1.Builder buildMatchV1() {
441 throw new UnsupportedOperationException("OFMatchV1 not supported in version 1.1");
442 }
443
444 public OFNiciraControllerRoleReply.Builder buildNiciraControllerRoleReply() {
445 throw new UnsupportedOperationException("OFNiciraControllerRoleReply not supported in version 1.1");
446 }
447 public OFNiciraControllerRoleReply niciraControllerRoleReply(OFNiciraControllerRole role) {
448 throw new UnsupportedOperationException("OFNiciraControllerRoleReply not supported in version 1.1");
449 }
450
451 public OFNiciraControllerRoleRequest.Builder buildNiciraControllerRoleRequest() {
452 throw new UnsupportedOperationException("OFNiciraControllerRoleRequest not supported in version 1.1");
453 }
454 public OFNiciraControllerRoleRequest niciraControllerRoleRequest(OFNiciraControllerRole role) {
455 throw new UnsupportedOperationException("OFNiciraControllerRoleRequest not supported in version 1.1");
456 }
457
458 public OFPacketIn.Builder buildPacketIn() {
459 return new OFPacketInVer11.Builder().setXid(nextXid());
460 }
461
462 public OFPacketOut.Builder buildPacketOut() {
463 return new OFPacketOutVer11.Builder().setXid(nextXid());
464 }
465
466 public OFPacketQueue.Builder buildPacketQueue() {
467 return new OFPacketQueueVer11.Builder();
468 }
469
470 public OFPortDesc.Builder buildPortDesc() {
471 return new OFPortDescVer11.Builder();
472 }
473
474 public OFPortMod.Builder buildPortMod() {
475 return new OFPortModVer11.Builder().setXid(nextXid());
476 }
477
478 public OFPortStatsEntry.Builder buildPortStatsEntry() {
479 return new OFPortStatsEntryVer11.Builder();
480 }
481
482 public OFPortStatsReply.Builder buildPortStatsReply() {
483 return new OFPortStatsReplyVer11.Builder().setXid(nextXid());
484 }
485
486 public OFPortStatsRequest.Builder buildPortStatsRequest() {
487 return new OFPortStatsRequestVer11.Builder().setXid(nextXid());
488 }
489
490 public OFPortStatus.Builder buildPortStatus() {
491 return new OFPortStatusVer11.Builder().setXid(nextXid());
492 }
493
494 public OFQueueGetConfigReply.Builder buildQueueGetConfigReply() {
495 return new OFQueueGetConfigReplyVer11.Builder().setXid(nextXid());
496 }
497
498 public OFQueueGetConfigRequest.Builder buildQueueGetConfigRequest() {
499 return new OFQueueGetConfigRequestVer11.Builder().setXid(nextXid());
500 }
501 public OFQueueGetConfigRequest queueGetConfigRequest(OFPort port) {
502 return new OFQueueGetConfigRequestVer11(
503 nextXid(),
504 port
505 );
506 }
507
508 public OFQueueStatsEntry.Builder buildQueueStatsEntry() {
509 return new OFQueueStatsEntryVer11.Builder();
510 }
511
512 public OFQueueStatsReply.Builder buildQueueStatsReply() {
513 return new OFQueueStatsReplyVer11.Builder().setXid(nextXid());
514 }
515
516 public OFQueueStatsRequest.Builder buildQueueStatsRequest() {
517 return new OFQueueStatsRequestVer11.Builder().setXid(nextXid());
518 }
519
520 public OFSetConfig.Builder buildSetConfig() {
521 return new OFSetConfigVer11.Builder().setXid(nextXid());
522 }
523
524 public OFTableMod.Builder buildTableMod() {
525 return new OFTableModVer11.Builder().setXid(nextXid());
526 }
527
528 public OFTableStatsEntry.Builder buildTableStatsEntry() {
529 return new OFTableStatsEntryVer11.Builder();
530 }
531
532 public OFTableStatsReply.Builder buildTableStatsReply() {
533 return new OFTableStatsReplyVer11.Builder().setXid(nextXid());
534 }
535
536 public OFTableStatsRequest.Builder buildTableStatsRequest() {
537 return new OFTableStatsRequestVer11.Builder().setXid(nextXid());
538 }
539 public OFTableStatsRequest tableStatsRequest(Set<OFStatsRequestFlags> flags) {
540 return new OFTableStatsRequestVer11(
541 nextXid(),
542 flags
543 );
544 }
545
546 public OFBucket.Builder buildBucket() {
547 return new OFBucketVer11.Builder();
548 }
549
550 public OFBucketCounter.Builder buildBucketCounter() {
551 return new OFBucketCounterVer11.Builder();
552 }
553 public OFBucketCounter bucketCounter(U64 packetCount, U64 byteCount) {
554 return new OFBucketCounterVer11(
555 packetCount,
556 byteCount
557 );
558 }
559
560 public OFGroupAdd.Builder buildGroupAdd() {
561 return new OFGroupAddVer11.Builder().setXid(nextXid());
562 }
563
564 public OFGroupDelete.Builder buildGroupDelete() {
565 return new OFGroupDeleteVer11.Builder().setXid(nextXid());
566 }
567
568 public OFGroupDescStatsEntry.Builder buildGroupDescStatsEntry() {
569 return new OFGroupDescStatsEntryVer11.Builder();
570 }
571
572 public OFGroupDescStatsReply.Builder buildGroupDescStatsReply() {
573 return new OFGroupDescStatsReplyVer11.Builder().setXid(nextXid());
574 }
575
576 public OFGroupDescStatsRequest.Builder buildGroupDescStatsRequest() {
577 return new OFGroupDescStatsRequestVer11.Builder().setXid(nextXid());
578 }
579 public OFGroupDescStatsRequest groupDescStatsRequest(Set<OFStatsRequestFlags> flags) {
580 return new OFGroupDescStatsRequestVer11(
581 nextXid(),
582 flags
583 );
584 }
585
586 public OFGroupModify.Builder buildGroupModify() {
587 return new OFGroupModifyVer11.Builder().setXid(nextXid());
588 }
589
590 public OFGroupStatsEntry.Builder buildGroupStatsEntry() {
591 return new OFGroupStatsEntryVer11.Builder();
592 }
593
594 public OFGroupStatsReply.Builder buildGroupStatsReply() {
595 return new OFGroupStatsReplyVer11.Builder().setXid(nextXid());
596 }
597
598 public OFGroupStatsRequest.Builder buildGroupStatsRequest() {
599 return new OFGroupStatsRequestVer11.Builder().setXid(nextXid());
600 }
601
602 public OFMatchV2.Builder buildMatchV2() {
603 return new OFMatchV2Ver11.Builder();
604 }
605 public Match.Builder buildMatch() {
606 return new OFMatchV2Ver11.Builder();
607 }
608
609 final static Match MATCH_WILDCARD_ALL = OFMatchV2Ver11.DEFAULT;
610
611 public Match matchWildcardAll() {
612 return MATCH_WILDCARD_ALL;
613 }
614
615 public OFGroupFeaturesStatsReply.Builder buildGroupFeaturesStatsReply() {
616 throw new UnsupportedOperationException("OFGroupFeaturesStatsReply not supported in version 1.1");
617 }
618
619 public OFGroupFeaturesStatsRequest.Builder buildGroupFeaturesStatsRequest() {
620 throw new UnsupportedOperationException("OFGroupFeaturesStatsRequest not supported in version 1.1");
621 }
622 public OFGroupFeaturesStatsRequest groupFeaturesStatsRequest(Set<OFStatsRequestFlags> flags) {
623 throw new UnsupportedOperationException("OFGroupFeaturesStatsRequest not supported in version 1.1");
624 }
625
626 public OFMatchV3.Builder buildMatchV3() {
627 throw new UnsupportedOperationException("OFMatchV3 not supported in version 1.1");
628 }
629 public OFMatchV3 matchV3(OFOxmList oxmList) {
630 throw new UnsupportedOperationException("OFMatchV3 not supported in version 1.1");
631 }
632
633 public OFRoleReply.Builder buildRoleReply() {
634 throw new UnsupportedOperationException("OFRoleReply not supported in version 1.1");
635 }
636
637 public OFRoleRequest.Builder buildRoleRequest() {
638 throw new UnsupportedOperationException("OFRoleRequest not supported in version 1.1");
639 }
640
641 public OFAsyncGetReply.Builder buildAsyncGetReply() {
642 throw new UnsupportedOperationException("OFAsyncGetReply not supported in version 1.1");
643 }
644
645 public OFAsyncGetRequest.Builder buildAsyncGetRequest() {
646 throw new UnsupportedOperationException("OFAsyncGetRequest not supported in version 1.1");
647 }
648
649 public OFAsyncSet.Builder buildAsyncSet() {
650 throw new UnsupportedOperationException("OFAsyncSet not supported in version 1.1");
651 }
652
653 public OFBsnArpIdle.Builder buildBsnArpIdle() {
654 throw new UnsupportedOperationException("OFBsnArpIdle not supported in version 1.1");
655 }
656
657 public OFBsnControllerConnection.Builder buildBsnControllerConnection() {
658 throw new UnsupportedOperationException("OFBsnControllerConnection not supported in version 1.1");
659 }
660
661 public OFBsnControllerConnectionsReply.Builder buildBsnControllerConnectionsReply() {
662 throw new UnsupportedOperationException("OFBsnControllerConnectionsReply not supported in version 1.1");
663 }
664 public OFBsnControllerConnectionsReply bsnControllerConnectionsReply(List<OFBsnControllerConnection> connections) {
665 throw new UnsupportedOperationException("OFBsnControllerConnectionsReply not supported in version 1.1");
666 }
667
668 public OFBsnControllerConnectionsRequest.Builder buildBsnControllerConnectionsRequest() {
669 throw new UnsupportedOperationException("OFBsnControllerConnectionsRequest not supported in version 1.1");
670 }
671 public OFBsnControllerConnectionsRequest bsnControllerConnectionsRequest() {
672 throw new UnsupportedOperationException("OFBsnControllerConnectionsRequest not supported in version 1.1");
673 }
674
675 public OFBsnDebugCounterDescStatsEntry.Builder buildBsnDebugCounterDescStatsEntry() {
676 throw new UnsupportedOperationException("OFBsnDebugCounterDescStatsEntry not supported in version 1.1");
677 }
678
679 public OFBsnDebugCounterDescStatsReply.Builder buildBsnDebugCounterDescStatsReply() {
680 throw new UnsupportedOperationException("OFBsnDebugCounterDescStatsReply not supported in version 1.1");
681 }
682
683 public OFBsnDebugCounterDescStatsRequest.Builder buildBsnDebugCounterDescStatsRequest() {
684 throw new UnsupportedOperationException("OFBsnDebugCounterDescStatsRequest not supported in version 1.1");
685 }
686 public OFBsnDebugCounterDescStatsRequest bsnDebugCounterDescStatsRequest(Set<OFStatsRequestFlags> flags) {
687 throw new UnsupportedOperationException("OFBsnDebugCounterDescStatsRequest not supported in version 1.1");
688 }
689
690 public OFBsnDebugCounterStatsEntry.Builder buildBsnDebugCounterStatsEntry() {
691 throw new UnsupportedOperationException("OFBsnDebugCounterStatsEntry not supported in version 1.1");
692 }
693 public OFBsnDebugCounterStatsEntry bsnDebugCounterStatsEntry(U64 counterId, U64 value) {
694 throw new UnsupportedOperationException("OFBsnDebugCounterStatsEntry not supported in version 1.1");
695 }
696
697 public OFBsnDebugCounterStatsReply.Builder buildBsnDebugCounterStatsReply() {
698 throw new UnsupportedOperationException("OFBsnDebugCounterStatsReply not supported in version 1.1");
699 }
700
701 public OFBsnDebugCounterStatsRequest.Builder buildBsnDebugCounterStatsRequest() {
702 throw new UnsupportedOperationException("OFBsnDebugCounterStatsRequest not supported in version 1.1");
703 }
704 public OFBsnDebugCounterStatsRequest bsnDebugCounterStatsRequest(Set<OFStatsRequestFlags> flags) {
705 throw new UnsupportedOperationException("OFBsnDebugCounterStatsRequest not supported in version 1.1");
706 }
707
708 public OFBsnFlowChecksumBucketStatsEntry.Builder buildBsnFlowChecksumBucketStatsEntry() {
709 throw new UnsupportedOperationException("OFBsnFlowChecksumBucketStatsEntry not supported in version 1.1");
710 }
711 public OFBsnFlowChecksumBucketStatsEntry bsnFlowChecksumBucketStatsEntry(U64 checksum) {
712 throw new UnsupportedOperationException("OFBsnFlowChecksumBucketStatsEntry not supported in version 1.1");
713 }
714
715 public OFBsnFlowChecksumBucketStatsReply.Builder buildBsnFlowChecksumBucketStatsReply() {
716 throw new UnsupportedOperationException("OFBsnFlowChecksumBucketStatsReply not supported in version 1.1");
717 }
718
719 public OFBsnFlowChecksumBucketStatsRequest.Builder buildBsnFlowChecksumBucketStatsRequest() {
720 throw new UnsupportedOperationException("OFBsnFlowChecksumBucketStatsRequest not supported in version 1.1");
721 }
722
723 public OFBsnFlowIdle.Builder buildBsnFlowIdle() {
724 throw new UnsupportedOperationException("OFBsnFlowIdle not supported in version 1.1");
725 }
726
727 public OFBsnFlowIdleEnableGetReply.Builder buildBsnFlowIdleEnableGetReply() {
728 throw new UnsupportedOperationException("OFBsnFlowIdleEnableGetReply not supported in version 1.1");
729 }
730 public OFBsnFlowIdleEnableGetReply bsnFlowIdleEnableGetReply(long enabled) {
731 throw new UnsupportedOperationException("OFBsnFlowIdleEnableGetReply not supported in version 1.1");
732 }
733
734 public OFBsnFlowIdleEnableGetRequest.Builder buildBsnFlowIdleEnableGetRequest() {
735 throw new UnsupportedOperationException("OFBsnFlowIdleEnableGetRequest not supported in version 1.1");
736 }
737 public OFBsnFlowIdleEnableGetRequest bsnFlowIdleEnableGetRequest() {
738 throw new UnsupportedOperationException("OFBsnFlowIdleEnableGetRequest not supported in version 1.1");
739 }
740
741 public OFBsnFlowIdleEnableSetReply.Builder buildBsnFlowIdleEnableSetReply() {
742 throw new UnsupportedOperationException("OFBsnFlowIdleEnableSetReply not supported in version 1.1");
743 }
744
745 public OFBsnFlowIdleEnableSetRequest.Builder buildBsnFlowIdleEnableSetRequest() {
746 throw new UnsupportedOperationException("OFBsnFlowIdleEnableSetRequest not supported in version 1.1");
747 }
748 public OFBsnFlowIdleEnableSetRequest bsnFlowIdleEnableSetRequest(long enable) {
749 throw new UnsupportedOperationException("OFBsnFlowIdleEnableSetRequest not supported in version 1.1");
750 }
751
752 public OFBsnGentableBucketStatsEntry.Builder buildBsnGentableBucketStatsEntry() {
753 throw new UnsupportedOperationException("OFBsnGentableBucketStatsEntry not supported in version 1.1");
754 }
755 public OFBsnGentableBucketStatsEntry bsnGentableBucketStatsEntry(U128 checksum) {
756 throw new UnsupportedOperationException("OFBsnGentableBucketStatsEntry not supported in version 1.1");
757 }
758
759 public OFBsnGentableBucketStatsReply.Builder buildBsnGentableBucketStatsReply() {
760 throw new UnsupportedOperationException("OFBsnGentableBucketStatsReply not supported in version 1.1");
761 }
762
763 public OFBsnGentableBucketStatsRequest.Builder buildBsnGentableBucketStatsRequest() {
764 throw new UnsupportedOperationException("OFBsnGentableBucketStatsRequest not supported in version 1.1");
765 }
766
767 public OFBsnGentableClearReply.Builder buildBsnGentableClearReply() {
768 throw new UnsupportedOperationException("OFBsnGentableClearReply not supported in version 1.1");
769 }
770
771 public OFBsnGentableClearRequest.Builder buildBsnGentableClearRequest() {
772 throw new UnsupportedOperationException("OFBsnGentableClearRequest not supported in version 1.1");
773 }
774
775 public OFBsnGentableDescStatsEntry.Builder buildBsnGentableDescStatsEntry() {
776 throw new UnsupportedOperationException("OFBsnGentableDescStatsEntry not supported in version 1.1");
777 }
778
779 public OFBsnGentableDescStatsReply.Builder buildBsnGentableDescStatsReply() {
780 throw new UnsupportedOperationException("OFBsnGentableDescStatsReply not supported in version 1.1");
781 }
782
783 public OFBsnGentableDescStatsRequest.Builder buildBsnGentableDescStatsRequest() {
784 throw new UnsupportedOperationException("OFBsnGentableDescStatsRequest not supported in version 1.1");
785 }
786 public OFBsnGentableDescStatsRequest bsnGentableDescStatsRequest(Set<OFStatsRequestFlags> flags) {
787 throw new UnsupportedOperationException("OFBsnGentableDescStatsRequest not supported in version 1.1");
788 }
789
790 public OFBsnGentableEntryAdd.Builder buildBsnGentableEntryAdd() {
791 throw new UnsupportedOperationException("OFBsnGentableEntryAdd not supported in version 1.1");
792 }
793
794 public OFBsnGentableEntryDelete.Builder buildBsnGentableEntryDelete() {
795 throw new UnsupportedOperationException("OFBsnGentableEntryDelete not supported in version 1.1");
796 }
797
798 public OFBsnGentableEntryDescStatsEntry.Builder buildBsnGentableEntryDescStatsEntry() {
799 throw new UnsupportedOperationException("OFBsnGentableEntryDescStatsEntry not supported in version 1.1");
800 }
801
802 public OFBsnGentableEntryDescStatsReply.Builder buildBsnGentableEntryDescStatsReply() {
803 throw new UnsupportedOperationException("OFBsnGentableEntryDescStatsReply not supported in version 1.1");
804 }
805
806 public OFBsnGentableEntryDescStatsRequest.Builder buildBsnGentableEntryDescStatsRequest() {
807 throw new UnsupportedOperationException("OFBsnGentableEntryDescStatsRequest not supported in version 1.1");
808 }
809
810 public OFBsnGentableEntryStatsEntry.Builder buildBsnGentableEntryStatsEntry() {
811 throw new UnsupportedOperationException("OFBsnGentableEntryStatsEntry not supported in version 1.1");
812 }
813 public OFBsnGentableEntryStatsEntry bsnGentableEntryStatsEntry(List<OFBsnTlv> key, List<OFBsnTlv> stats) {
814 throw new UnsupportedOperationException("OFBsnGentableEntryStatsEntry not supported in version 1.1");
815 }
816
817 public OFBsnGentableEntryStatsReply.Builder buildBsnGentableEntryStatsReply() {
818 throw new UnsupportedOperationException("OFBsnGentableEntryStatsReply not supported in version 1.1");
819 }
820
821 public OFBsnGentableEntryStatsRequest.Builder buildBsnGentableEntryStatsRequest() {
822 throw new UnsupportedOperationException("OFBsnGentableEntryStatsRequest not supported in version 1.1");
823 }
824
825 public OFBsnGentableSetBucketsSize.Builder buildBsnGentableSetBucketsSize() {
826 throw new UnsupportedOperationException("OFBsnGentableSetBucketsSize not supported in version 1.1");
827 }
828
829 public OFBsnGentableStatsEntry.Builder buildBsnGentableStatsEntry() {
830 throw new UnsupportedOperationException("OFBsnGentableStatsEntry not supported in version 1.1");
831 }
832
833 public OFBsnGentableStatsReply.Builder buildBsnGentableStatsReply() {
834 throw new UnsupportedOperationException("OFBsnGentableStatsReply not supported in version 1.1");
835 }
836
837 public OFBsnGentableStatsRequest.Builder buildBsnGentableStatsRequest() {
838 throw new UnsupportedOperationException("OFBsnGentableStatsRequest not supported in version 1.1");
839 }
840 public OFBsnGentableStatsRequest bsnGentableStatsRequest(Set<OFStatsRequestFlags> flags) {
841 throw new UnsupportedOperationException("OFBsnGentableStatsRequest not supported in version 1.1");
842 }
843
844 public OFBsnGetSwitchPipelineReply.Builder buildBsnGetSwitchPipelineReply() {
845 throw new UnsupportedOperationException("OFBsnGetSwitchPipelineReply not supported in version 1.1");
846 }
847 public OFBsnGetSwitchPipelineReply bsnGetSwitchPipelineReply(String pipeline) {
848 throw new UnsupportedOperationException("OFBsnGetSwitchPipelineReply not supported in version 1.1");
849 }
850
851 public OFBsnGetSwitchPipelineRequest.Builder buildBsnGetSwitchPipelineRequest() {
852 throw new UnsupportedOperationException("OFBsnGetSwitchPipelineRequest not supported in version 1.1");
853 }
854 public OFBsnGetSwitchPipelineRequest bsnGetSwitchPipelineRequest() {
855 throw new UnsupportedOperationException("OFBsnGetSwitchPipelineRequest not supported in version 1.1");
856 }
857
858 public OFBsnImageDescStatsReply.Builder buildBsnImageDescStatsReply() {
859 throw new UnsupportedOperationException("OFBsnImageDescStatsReply not supported in version 1.1");
860 }
861
862 public OFBsnImageDescStatsRequest.Builder buildBsnImageDescStatsRequest() {
863 throw new UnsupportedOperationException("OFBsnImageDescStatsRequest not supported in version 1.1");
864 }
865 public OFBsnImageDescStatsRequest bsnImageDescStatsRequest(Set<OFStatsRequestFlags> flags) {
866 throw new UnsupportedOperationException("OFBsnImageDescStatsRequest not supported in version 1.1");
867 }
868
869 public OFBsnLacpConvergenceNotif.Builder buildBsnLacpConvergenceNotif() {
870 throw new UnsupportedOperationException("OFBsnLacpConvergenceNotif not supported in version 1.1");
871 }
872
873 public OFBsnLacpStatsEntry.Builder buildBsnLacpStatsEntry() {
874 throw new UnsupportedOperationException("OFBsnLacpStatsEntry not supported in version 1.1");
875 }
876
877 public OFBsnLacpStatsReply.Builder buildBsnLacpStatsReply() {
878 throw new UnsupportedOperationException("OFBsnLacpStatsReply not supported in version 1.1");
879 }
880
881 public OFBsnLacpStatsRequest.Builder buildBsnLacpStatsRequest() {
882 throw new UnsupportedOperationException("OFBsnLacpStatsRequest not supported in version 1.1");
883 }
884 public OFBsnLacpStatsRequest bsnLacpStatsRequest(Set<OFStatsRequestFlags> flags) {
885 throw new UnsupportedOperationException("OFBsnLacpStatsRequest not supported in version 1.1");
886 }
887
888 public OFBsnLog.Builder buildBsnLog() {
889 throw new UnsupportedOperationException("OFBsnLog not supported in version 1.1");
890 }
891
892 public OFBsnPortCounterStatsEntry.Builder buildBsnPortCounterStatsEntry() {
893 throw new UnsupportedOperationException("OFBsnPortCounterStatsEntry not supported in version 1.1");
894 }
895 public OFBsnPortCounterStatsEntry bsnPortCounterStatsEntry(OFPort portNo, List<U64> values) {
896 throw new UnsupportedOperationException("OFBsnPortCounterStatsEntry not supported in version 1.1");
897 }
898
899 public OFBsnPortCounterStatsReply.Builder buildBsnPortCounterStatsReply() {
900 throw new UnsupportedOperationException("OFBsnPortCounterStatsReply not supported in version 1.1");
901 }
902
903 public OFBsnPortCounterStatsRequest.Builder buildBsnPortCounterStatsRequest() {
904 throw new UnsupportedOperationException("OFBsnPortCounterStatsRequest not supported in version 1.1");
905 }
906
907 public OFBsnRoleStatus.Builder buildBsnRoleStatus() {
908 throw new UnsupportedOperationException("OFBsnRoleStatus not supported in version 1.1");
909 }
910
911 public OFBsnSetAuxCxnsReply.Builder buildBsnSetAuxCxnsReply() {
912 throw new UnsupportedOperationException("OFBsnSetAuxCxnsReply not supported in version 1.1");
913 }
914
915 public OFBsnSetAuxCxnsRequest.Builder buildBsnSetAuxCxnsRequest() {
916 throw new UnsupportedOperationException("OFBsnSetAuxCxnsRequest not supported in version 1.1");
917 }
918 public OFBsnSetAuxCxnsRequest bsnSetAuxCxnsRequest(long numAux) {
919 throw new UnsupportedOperationException("OFBsnSetAuxCxnsRequest not supported in version 1.1");
920 }
921
922 public OFBsnSetLacpReply.Builder buildBsnSetLacpReply() {
923 throw new UnsupportedOperationException("OFBsnSetLacpReply not supported in version 1.1");
924 }
925
926 public OFBsnSetLacpRequest.Builder buildBsnSetLacpRequest() {
927 throw new UnsupportedOperationException("OFBsnSetLacpRequest not supported in version 1.1");
928 }
929
930 public OFBsnSetSwitchPipelineReply.Builder buildBsnSetSwitchPipelineReply() {
931 throw new UnsupportedOperationException("OFBsnSetSwitchPipelineReply not supported in version 1.1");
932 }
933 public OFBsnSetSwitchPipelineReply bsnSetSwitchPipelineReply(long status) {
934 throw new UnsupportedOperationException("OFBsnSetSwitchPipelineReply not supported in version 1.1");
935 }
936
937 public OFBsnSetSwitchPipelineRequest.Builder buildBsnSetSwitchPipelineRequest() {
938 throw new UnsupportedOperationException("OFBsnSetSwitchPipelineRequest not supported in version 1.1");
939 }
940 public OFBsnSetSwitchPipelineRequest bsnSetSwitchPipelineRequest(String pipeline) {
941 throw new UnsupportedOperationException("OFBsnSetSwitchPipelineRequest not supported in version 1.1");
942 }
943
944 public OFBsnSwitchPipelineStatsEntry.Builder buildBsnSwitchPipelineStatsEntry() {
945 throw new UnsupportedOperationException("OFBsnSwitchPipelineStatsEntry not supported in version 1.1");
946 }
947 public OFBsnSwitchPipelineStatsEntry bsnSwitchPipelineStatsEntry(String pipeline) {
948 throw new UnsupportedOperationException("OFBsnSwitchPipelineStatsEntry not supported in version 1.1");
949 }
950
951 public OFBsnSwitchPipelineStatsReply.Builder buildBsnSwitchPipelineStatsReply() {
952 throw new UnsupportedOperationException("OFBsnSwitchPipelineStatsReply not supported in version 1.1");
953 }
954
955 public OFBsnSwitchPipelineStatsRequest.Builder buildBsnSwitchPipelineStatsRequest() {
956 throw new UnsupportedOperationException("OFBsnSwitchPipelineStatsRequest not supported in version 1.1");
957 }
958 public OFBsnSwitchPipelineStatsRequest bsnSwitchPipelineStatsRequest(Set<OFStatsRequestFlags> flags) {
959 throw new UnsupportedOperationException("OFBsnSwitchPipelineStatsRequest not supported in version 1.1");
960 }
961
962 public OFBsnTableChecksumStatsEntry.Builder buildBsnTableChecksumStatsEntry() {
963 throw new UnsupportedOperationException("OFBsnTableChecksumStatsEntry not supported in version 1.1");
964 }
965 public OFBsnTableChecksumStatsEntry bsnTableChecksumStatsEntry(TableId tableId, U64 checksum) {
966 throw new UnsupportedOperationException("OFBsnTableChecksumStatsEntry not supported in version 1.1");
967 }
968
969 public OFBsnTableChecksumStatsReply.Builder buildBsnTableChecksumStatsReply() {
970 throw new UnsupportedOperationException("OFBsnTableChecksumStatsReply not supported in version 1.1");
971 }
972
973 public OFBsnTableChecksumStatsRequest.Builder buildBsnTableChecksumStatsRequest() {
974 throw new UnsupportedOperationException("OFBsnTableChecksumStatsRequest not supported in version 1.1");
975 }
976 public OFBsnTableChecksumStatsRequest bsnTableChecksumStatsRequest(Set<OFStatsRequestFlags> flags) {
977 throw new UnsupportedOperationException("OFBsnTableChecksumStatsRequest not supported in version 1.1");
978 }
979
980 public OFBsnTableSetBucketsSize.Builder buildBsnTableSetBucketsSize() {
981 throw new UnsupportedOperationException("OFBsnTableSetBucketsSize not supported in version 1.1");
982 }
983
984 public OFBsnTimeReply.Builder buildBsnTimeReply() {
985 throw new UnsupportedOperationException("OFBsnTimeReply not supported in version 1.1");
986 }
987 public OFBsnTimeReply bsnTimeReply(U64 timeMs) {
988 throw new UnsupportedOperationException("OFBsnTimeReply not supported in version 1.1");
989 }
990
991 public OFBsnTimeRequest.Builder buildBsnTimeRequest() {
992 throw new UnsupportedOperationException("OFBsnTimeRequest not supported in version 1.1");
993 }
994 public OFBsnTimeRequest bsnTimeRequest() {
995 throw new UnsupportedOperationException("OFBsnTimeRequest not supported in version 1.1");
996 }
997
998 public OFBsnVlanCounterStatsEntry.Builder buildBsnVlanCounterStatsEntry() {
999 throw new UnsupportedOperationException("OFBsnVlanCounterStatsEntry not supported in version 1.1");
1000 }
1001 public OFBsnVlanCounterStatsEntry bsnVlanCounterStatsEntry(int vlanVid, List<U64> values) {
1002 throw new UnsupportedOperationException("OFBsnVlanCounterStatsEntry not supported in version 1.1");
1003 }
1004
1005 public OFBsnVlanCounterStatsReply.Builder buildBsnVlanCounterStatsReply() {
1006 throw new UnsupportedOperationException("OFBsnVlanCounterStatsReply not supported in version 1.1");
1007 }
1008
1009 public OFBsnVlanCounterStatsRequest.Builder buildBsnVlanCounterStatsRequest() {
1010 throw new UnsupportedOperationException("OFBsnVlanCounterStatsRequest not supported in version 1.1");
1011 }
1012
1013 public OFBsnVrfCounterStatsEntry.Builder buildBsnVrfCounterStatsEntry() {
1014 throw new UnsupportedOperationException("OFBsnVrfCounterStatsEntry not supported in version 1.1");
1015 }
1016 public OFBsnVrfCounterStatsEntry bsnVrfCounterStatsEntry(long vrf, List<U64> values) {
1017 throw new UnsupportedOperationException("OFBsnVrfCounterStatsEntry not supported in version 1.1");
1018 }
1019
1020 public OFBsnVrfCounterStatsReply.Builder buildBsnVrfCounterStatsReply() {
1021 throw new UnsupportedOperationException("OFBsnVrfCounterStatsReply not supported in version 1.1");
1022 }
1023
1024 public OFBsnVrfCounterStatsRequest.Builder buildBsnVrfCounterStatsRequest() {
1025 throw new UnsupportedOperationException("OFBsnVrfCounterStatsRequest not supported in version 1.1");
1026 }
1027
1028 public OFHelloElemVersionbitmap.Builder buildHelloElemVersionbitmap() {
1029 throw new UnsupportedOperationException("OFHelloElemVersionbitmap not supported in version 1.1");
1030 }
1031 public OFHelloElemVersionbitmap helloElemVersionbitmap(List<U32> bitmaps) {
1032 throw new UnsupportedOperationException("OFHelloElemVersionbitmap not supported in version 1.1");
1033 }
1034
1035 public OFMeterBandStats.Builder buildMeterBandStats() {
1036 throw new UnsupportedOperationException("OFMeterBandStats not supported in version 1.1");
1037 }
1038 public OFMeterBandStats meterBandStats(U64 packetBandCount, U64 byteBandCount) {
1039 throw new UnsupportedOperationException("OFMeterBandStats not supported in version 1.1");
1040 }
1041
1042 public OFMeterConfig.Builder buildMeterConfig() {
1043 throw new UnsupportedOperationException("OFMeterConfig not supported in version 1.1");
1044 }
1045
1046 public OFMeterConfigStatsReply.Builder buildMeterConfigStatsReply() {
1047 throw new UnsupportedOperationException("OFMeterConfigStatsReply not supported in version 1.1");
1048 }
1049
1050 public OFMeterConfigStatsRequest.Builder buildMeterConfigStatsRequest() {
1051 throw new UnsupportedOperationException("OFMeterConfigStatsRequest not supported in version 1.1");
1052 }
1053
1054 public OFMeterFeatures.Builder buildMeterFeatures() {
1055 throw new UnsupportedOperationException("OFMeterFeatures not supported in version 1.1");
1056 }
1057
1058 public OFMeterFeaturesStatsReply.Builder buildMeterFeaturesStatsReply() {
1059 throw new UnsupportedOperationException("OFMeterFeaturesStatsReply not supported in version 1.1");
1060 }
1061
1062 public OFMeterFeaturesStatsRequest.Builder buildMeterFeaturesStatsRequest() {
1063 throw new UnsupportedOperationException("OFMeterFeaturesStatsRequest not supported in version 1.1");
1064 }
1065 public OFMeterFeaturesStatsRequest meterFeaturesStatsRequest(Set<OFStatsRequestFlags> flags) {
1066 throw new UnsupportedOperationException("OFMeterFeaturesStatsRequest not supported in version 1.1");
1067 }
1068
1069 public OFMeterMod.Builder buildMeterMod() {
1070 throw new UnsupportedOperationException("OFMeterMod not supported in version 1.1");
1071 }
1072
1073 public OFMeterStats.Builder buildMeterStats() {
1074 throw new UnsupportedOperationException("OFMeterStats not supported in version 1.1");
1075 }
1076
1077 public OFMeterStatsReply.Builder buildMeterStatsReply() {
1078 throw new UnsupportedOperationException("OFMeterStatsReply not supported in version 1.1");
1079 }
1080
1081 public OFMeterStatsRequest.Builder buildMeterStatsRequest() {
1082 throw new UnsupportedOperationException("OFMeterStatsRequest not supported in version 1.1");
1083 }
1084
1085 public OFPortDescStatsReply.Builder buildPortDescStatsReply() {
1086 throw new UnsupportedOperationException("OFPortDescStatsReply not supported in version 1.1");
1087 }
1088
1089 public OFPortDescStatsRequest.Builder buildPortDescStatsRequest() {
1090 throw new UnsupportedOperationException("OFPortDescStatsRequest not supported in version 1.1");
1091 }
1092 public OFPortDescStatsRequest portDescStatsRequest(Set<OFStatsRequestFlags> flags) {
1093 throw new UnsupportedOperationException("OFPortDescStatsRequest not supported in version 1.1");
1094 }
1095
1096 public OFTableFeaturePropApplyActions.Builder buildTableFeaturePropApplyActions() {
1097 throw new UnsupportedOperationException("OFTableFeaturePropApplyActions not supported in version 1.1");
1098 }
1099 public OFTableFeaturePropApplyActions tableFeaturePropApplyActions(List<OFActionId> actionIds) {
1100 throw new UnsupportedOperationException("OFTableFeaturePropApplyActions not supported in version 1.1");
1101 }
1102
1103 public OFTableFeaturePropApplyActionsMiss.Builder buildTableFeaturePropApplyActionsMiss() {
1104 throw new UnsupportedOperationException("OFTableFeaturePropApplyActionsMiss not supported in version 1.1");
1105 }
1106 public OFTableFeaturePropApplyActionsMiss tableFeaturePropApplyActionsMiss(List<OFActionId> actionIds) {
1107 throw new UnsupportedOperationException("OFTableFeaturePropApplyActionsMiss not supported in version 1.1");
1108 }
1109
1110 public OFTableFeaturePropApplySetfield.Builder buildTableFeaturePropApplySetfield() {
1111 throw new UnsupportedOperationException("OFTableFeaturePropApplySetfield not supported in version 1.1");
1112 }
1113 public OFTableFeaturePropApplySetfield tableFeaturePropApplySetfield(List<U32> oxmIds) {
1114 throw new UnsupportedOperationException("OFTableFeaturePropApplySetfield not supported in version 1.1");
1115 }
1116
1117 public OFTableFeaturePropApplySetfieldMiss.Builder buildTableFeaturePropApplySetfieldMiss() {
1118 throw new UnsupportedOperationException("OFTableFeaturePropApplySetfieldMiss not supported in version 1.1");
1119 }
1120 public OFTableFeaturePropApplySetfieldMiss tableFeaturePropApplySetfieldMiss(List<U32> oxmIds) {
1121 throw new UnsupportedOperationException("OFTableFeaturePropApplySetfieldMiss not supported in version 1.1");
1122 }
1123
1124 public OFTableFeaturePropExperimenter.Builder buildTableFeaturePropExperimenter() {
1125 throw new UnsupportedOperationException("OFTableFeaturePropExperimenter not supported in version 1.1");
1126 }
1127
1128 public OFTableFeaturePropExperimenterMiss.Builder buildTableFeaturePropExperimenterMiss() {
1129 throw new UnsupportedOperationException("OFTableFeaturePropExperimenterMiss not supported in version 1.1");
1130 }
1131
1132 public OFTableFeaturePropInstructions.Builder buildTableFeaturePropInstructions() {
1133 throw new UnsupportedOperationException("OFTableFeaturePropInstructions not supported in version 1.1");
1134 }
1135 public OFTableFeaturePropInstructions tableFeaturePropInstructions(List<OFInstructionId> instructionIds) {
1136 throw new UnsupportedOperationException("OFTableFeaturePropInstructions not supported in version 1.1");
1137 }
1138
1139 public OFTableFeaturePropInstructionsMiss.Builder buildTableFeaturePropInstructionsMiss() {
1140 throw new UnsupportedOperationException("OFTableFeaturePropInstructionsMiss not supported in version 1.1");
1141 }
1142 public OFTableFeaturePropInstructionsMiss tableFeaturePropInstructionsMiss(List<OFInstructionId> instructionIds) {
1143 throw new UnsupportedOperationException("OFTableFeaturePropInstructionsMiss not supported in version 1.1");
1144 }
1145
1146 public OFTableFeaturePropMatch.Builder buildTableFeaturePropMatch() {
1147 throw new UnsupportedOperationException("OFTableFeaturePropMatch not supported in version 1.1");
1148 }
1149 public OFTableFeaturePropMatch tableFeaturePropMatch(List<U32> oxmIds) {
1150 throw new UnsupportedOperationException("OFTableFeaturePropMatch not supported in version 1.1");
1151 }
1152
1153 public OFTableFeaturePropNextTables.Builder buildTableFeaturePropNextTables() {
1154 throw new UnsupportedOperationException("OFTableFeaturePropNextTables not supported in version 1.1");
1155 }
1156 public OFTableFeaturePropNextTables tableFeaturePropNextTables(List<U8> nextTableIds) {
1157 throw new UnsupportedOperationException("OFTableFeaturePropNextTables not supported in version 1.1");
1158 }
1159
1160 public OFTableFeaturePropNextTablesMiss.Builder buildTableFeaturePropNextTablesMiss() {
1161 throw new UnsupportedOperationException("OFTableFeaturePropNextTablesMiss not supported in version 1.1");
1162 }
1163 public OFTableFeaturePropNextTablesMiss tableFeaturePropNextTablesMiss(List<U8> nextTableIds) {
1164 throw new UnsupportedOperationException("OFTableFeaturePropNextTablesMiss not supported in version 1.1");
1165 }
1166
1167 public OFTableFeaturePropWildcards.Builder buildTableFeaturePropWildcards() {
1168 throw new UnsupportedOperationException("OFTableFeaturePropWildcards not supported in version 1.1");
1169 }
1170 public OFTableFeaturePropWildcards tableFeaturePropWildcards(List<U32> oxmIds) {
1171 throw new UnsupportedOperationException("OFTableFeaturePropWildcards not supported in version 1.1");
1172 }
1173
1174 public OFTableFeaturePropWriteActions.Builder buildTableFeaturePropWriteActions() {
1175 throw new UnsupportedOperationException("OFTableFeaturePropWriteActions not supported in version 1.1");
1176 }
1177 public OFTableFeaturePropWriteActions tableFeaturePropWriteActions(List<OFActionId> actionIds) {
1178 throw new UnsupportedOperationException("OFTableFeaturePropWriteActions not supported in version 1.1");
1179 }
1180
1181 public OFTableFeaturePropWriteActionsMiss.Builder buildTableFeaturePropWriteActionsMiss() {
1182 throw new UnsupportedOperationException("OFTableFeaturePropWriteActionsMiss not supported in version 1.1");
1183 }
1184 public OFTableFeaturePropWriteActionsMiss tableFeaturePropWriteActionsMiss(List<OFActionId> actionIds) {
1185 throw new UnsupportedOperationException("OFTableFeaturePropWriteActionsMiss not supported in version 1.1");
1186 }
1187
1188 public OFTableFeaturePropWriteSetfield.Builder buildTableFeaturePropWriteSetfield() {
1189 throw new UnsupportedOperationException("OFTableFeaturePropWriteSetfield not supported in version 1.1");
1190 }
1191 public OFTableFeaturePropWriteSetfield tableFeaturePropWriteSetfield(List<U32> oxmIds) {
1192 throw new UnsupportedOperationException("OFTableFeaturePropWriteSetfield not supported in version 1.1");
1193 }
1194
1195 public OFTableFeaturePropWriteSetfieldMiss.Builder buildTableFeaturePropWriteSetfieldMiss() {
1196 throw new UnsupportedOperationException("OFTableFeaturePropWriteSetfieldMiss not supported in version 1.1");
1197 }
1198 public OFTableFeaturePropWriteSetfieldMiss tableFeaturePropWriteSetfieldMiss(List<U32> oxmIds) {
1199 throw new UnsupportedOperationException("OFTableFeaturePropWriteSetfieldMiss not supported in version 1.1");
1200 }
1201
1202 public OFTableFeatures.Builder buildTableFeatures() {
1203 throw new UnsupportedOperationException("OFTableFeatures not supported in version 1.1");
1204 }
1205
1206 public OFTableFeaturesStatsReply.Builder buildTableFeaturesStatsReply() {
1207 throw new UnsupportedOperationException("OFTableFeaturesStatsReply not supported in version 1.1");
1208 }
1209
1210 public OFTableFeaturesStatsRequest.Builder buildTableFeaturesStatsRequest() {
1211 throw new UnsupportedOperationException("OFTableFeaturesStatsRequest not supported in version 1.1");
1212 }
1213
1214 public OFUint64.Builder buildUint64() {
1215 throw new UnsupportedOperationException("OFUint64 not supported in version 1.1");
1216 }
1217 public OFUint64 uint64(U64 value) {
1218 throw new UnsupportedOperationException("OFUint64 not supported in version 1.1");
1219 }
1220
1221 public OFMessageReader<OFMessage> getReader() {
1222 return OFMessageVer11.READER;
1223 }
1224
1225 public long nextXid() {
1226 return xidGenerator.nextXid();
1227 }
1228
1229 public OFVersion getVersion() {
1230 return OFVersion.OF_11;
1231 }
1232}