blob: fe09c2cd04768a249da3f35e5ccf54c80b46faef [file] [log] [blame]
alshabib86ac11c2014-08-14 16:14:41 -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_interface.java
8// Do not modify
9
10package org.projectfloodlight.openflow.protocol.instruction;
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
28public interface OFInstructions {
29 // Subfactories
30
31 OFInstructionApplyActions.Builder buildApplyActions() throws UnsupportedOperationException;
32 OFInstructionApplyActions applyActions(List<OFAction> actions);
33 OFInstructionClearActions clearActions();
34 OFInstructionGotoTable.Builder buildGotoTable() throws UnsupportedOperationException;
35 OFInstructionGotoTable gotoTable(TableId tableId);
36 OFInstructionWriteActions.Builder buildWriteActions() throws UnsupportedOperationException;
37 OFInstructionWriteActions writeActions(List<OFAction> actions);
38 OFInstructionWriteMetadata.Builder buildWriteMetadata() throws UnsupportedOperationException;
39 OFInstructionWriteMetadata writeMetadata(U64 metadata, U64 metadataMask);
40 OFInstructionBsnArpOffload bsnArpOffload();
41 OFInstructionBsnDeny bsnDeny();
42 OFInstructionBsnDhcpOffload bsnDhcpOffload();
43 OFInstructionBsnDisableSplitHorizonCheck bsnDisableSplitHorizonCheck();
44 OFInstructionBsnDisableSrcMacCheck bsnDisableSrcMacCheck();
45 OFInstructionBsnDisableVlanCounters bsnDisableVlanCounters();
46 OFInstructionBsnPacketOfDeath bsnPacketOfDeath();
47 OFInstructionBsnPermit bsnPermit();
48 OFInstructionBsnPrioritizePdus bsnPrioritizePdus();
49 OFInstructionBsnRequireVlanXlate bsnRequireVlanXlate();
50 OFInstructionMeter.Builder buildMeter() throws UnsupportedOperationException;
51 OFInstructionMeter meter(long meterId);
52
53 OFMessageReader<OFInstruction> getReader();
54 OFVersion getVersion();
55}