blob: b1ea65d3c45acad5f872fdeacf7d4e46a23db3b7 [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.List;
27
28
29public class OFInstructionsVer10 implements OFInstructions {
30 public final static OFInstructionsVer10 INSTANCE = new OFInstructionsVer10();
31
32
33
34
35 public OFInstructionApplyActions.Builder buildApplyActions() {
36 throw new UnsupportedOperationException("OFInstructionApplyActions not supported in version 1.0");
37 }
38 public OFInstructionApplyActions applyActions(List<OFAction> actions) {
39 throw new UnsupportedOperationException("OFInstructionApplyActions not supported in version 1.0");
40 }
41
42 public OFInstructionClearActions clearActions() {
43 throw new UnsupportedOperationException("OFInstructionClearActions not supported in version 1.0");
44 }
45
46 public OFInstructionGotoTable.Builder buildGotoTable() {
47 throw new UnsupportedOperationException("OFInstructionGotoTable not supported in version 1.0");
48 }
49 public OFInstructionGotoTable gotoTable(TableId tableId) {
50 throw new UnsupportedOperationException("OFInstructionGotoTable not supported in version 1.0");
51 }
52
53 public OFInstructionWriteActions.Builder buildWriteActions() {
54 throw new UnsupportedOperationException("OFInstructionWriteActions not supported in version 1.0");
55 }
56 public OFInstructionWriteActions writeActions(List<OFAction> actions) {
57 throw new UnsupportedOperationException("OFInstructionWriteActions not supported in version 1.0");
58 }
59
60 public OFInstructionWriteMetadata.Builder buildWriteMetadata() {
61 throw new UnsupportedOperationException("OFInstructionWriteMetadata not supported in version 1.0");
62 }
63 public OFInstructionWriteMetadata writeMetadata(U64 metadata, U64 metadataMask) {
64 throw new UnsupportedOperationException("OFInstructionWriteMetadata not supported in version 1.0");
65 }
66
67 public OFInstructionBsnArpOffload bsnArpOffload() {
68 throw new UnsupportedOperationException("OFInstructionBsnArpOffload not supported in version 1.0");
69 }
70
71 public OFInstructionBsnDeny bsnDeny() {
72 throw new UnsupportedOperationException("OFInstructionBsnDeny not supported in version 1.0");
73 }
74
75 public OFInstructionBsnDhcpOffload bsnDhcpOffload() {
76 throw new UnsupportedOperationException("OFInstructionBsnDhcpOffload not supported in version 1.0");
77 }
78
79 public OFInstructionBsnDisableSplitHorizonCheck bsnDisableSplitHorizonCheck() {
80 throw new UnsupportedOperationException("OFInstructionBsnDisableSplitHorizonCheck not supported in version 1.0");
81 }
82
83 public OFInstructionBsnDisableSrcMacCheck bsnDisableSrcMacCheck() {
84 throw new UnsupportedOperationException("OFInstructionBsnDisableSrcMacCheck not supported in version 1.0");
85 }
86
87 public OFInstructionBsnDisableVlanCounters bsnDisableVlanCounters() {
88 throw new UnsupportedOperationException("OFInstructionBsnDisableVlanCounters not supported in version 1.0");
89 }
90
91 public OFInstructionBsnPacketOfDeath bsnPacketOfDeath() {
92 throw new UnsupportedOperationException("OFInstructionBsnPacketOfDeath not supported in version 1.0");
93 }
94
95 public OFInstructionBsnPermit bsnPermit() {
96 throw new UnsupportedOperationException("OFInstructionBsnPermit not supported in version 1.0");
97 }
98
99 public OFInstructionBsnPrioritizePdus bsnPrioritizePdus() {
100 throw new UnsupportedOperationException("OFInstructionBsnPrioritizePdus not supported in version 1.0");
101 }
102
103 public OFInstructionBsnRequireVlanXlate bsnRequireVlanXlate() {
104 throw new UnsupportedOperationException("OFInstructionBsnRequireVlanXlate not supported in version 1.0");
105 }
106
107 public OFInstructionMeter.Builder buildMeter() {
108 throw new UnsupportedOperationException("OFInstructionMeter not supported in version 1.0");
109 }
110 public OFInstructionMeter meter(long meterId) {
111 throw new UnsupportedOperationException("OFInstructionMeter not supported in version 1.0");
112 }
113
114 public OFMessageReader<OFInstruction> getReader() {
115 throw new UnsupportedOperationException("Reader<OFInstruction> not supported in version 1.0");
116 }
117
118
119 public OFVersion getVersion() {
120 return OFVersion.OF_10;
121 }
122}