blob: ee02f195db65c14b8e038aa5b34285dfc215dd9c [file] [log] [blame]
// Copyright (c) 2008 The Board of Trustees of The Leland Stanford Junior University
// Copyright (c) 2011, 2012 Open Networking Foundation
// Copyright (c) 2012, 2013 Big Switch Networks, Inc.
// This library was generated by the LoxiGen Compiler.
// See the file LICENSE.txt which should have been included in the source distribution
// Automatically generated by LOXI from template of_interface.java
// Do not modify
package org.projectfloodlight.openflow.protocol;
import org.projectfloodlight.openflow.protocol.*;
import org.projectfloodlight.openflow.protocol.action.*;
import org.projectfloodlight.openflow.protocol.actionid.*;
import org.projectfloodlight.openflow.protocol.bsntlv.*;
import org.projectfloodlight.openflow.protocol.errormsg.*;
import org.projectfloodlight.openflow.protocol.meterband.*;
import org.projectfloodlight.openflow.protocol.instruction.*;
import org.projectfloodlight.openflow.protocol.instructionid.*;
import org.projectfloodlight.openflow.protocol.match.*;
import org.projectfloodlight.openflow.protocol.oxm.*;
import org.projectfloodlight.openflow.protocol.queueprop.*;
import org.projectfloodlight.openflow.types.*;
import org.projectfloodlight.openflow.util.*;
import org.projectfloodlight.openflow.exceptions.*;
import java.util.Set;
import org.jboss.netty.buffer.ChannelBuffer;
public interface OFTableStatsEntry extends OFObject {
TableId getTableId();
String getName() throws UnsupportedOperationException;
OFMatchBmap getMatch() throws UnsupportedOperationException;
int getWildcards() throws UnsupportedOperationException;
long getWriteActions() throws UnsupportedOperationException;
long getApplyActions() throws UnsupportedOperationException;
U64 getWriteSetfields() throws UnsupportedOperationException;
U64 getApplySetfields() throws UnsupportedOperationException;
U64 getMetadataMatch() throws UnsupportedOperationException;
U64 getMetadataWrite() throws UnsupportedOperationException;
long getInstructions() throws UnsupportedOperationException;
long getConfig() throws UnsupportedOperationException;
long getMaxEntries() throws UnsupportedOperationException;
long getActiveCount();
U64 getLookupCount();
U64 getMatchedCount();
OFVersion getVersion();
void writeTo(ChannelBuffer channelBuffer);
Builder createBuilder();
public interface Builder {
OFTableStatsEntry build();
TableId getTableId();
Builder setTableId(TableId tableId);
String getName() throws UnsupportedOperationException;
Builder setName(String name) throws UnsupportedOperationException;
OFMatchBmap getMatch() throws UnsupportedOperationException;
Builder setMatch(OFMatchBmap match) throws UnsupportedOperationException;
int getWildcards() throws UnsupportedOperationException;
Builder setWildcards(int wildcards) throws UnsupportedOperationException;
long getWriteActions() throws UnsupportedOperationException;
Builder setWriteActions(long writeActions) throws UnsupportedOperationException;
long getApplyActions() throws UnsupportedOperationException;
Builder setApplyActions(long applyActions) throws UnsupportedOperationException;
U64 getWriteSetfields() throws UnsupportedOperationException;
Builder setWriteSetfields(U64 writeSetfields) throws UnsupportedOperationException;
U64 getApplySetfields() throws UnsupportedOperationException;
Builder setApplySetfields(U64 applySetfields) throws UnsupportedOperationException;
U64 getMetadataMatch() throws UnsupportedOperationException;
Builder setMetadataMatch(U64 metadataMatch) throws UnsupportedOperationException;
U64 getMetadataWrite() throws UnsupportedOperationException;
Builder setMetadataWrite(U64 metadataWrite) throws UnsupportedOperationException;
long getInstructions() throws UnsupportedOperationException;
Builder setInstructions(long instructions) throws UnsupportedOperationException;
long getConfig() throws UnsupportedOperationException;
Builder setConfig(long config) throws UnsupportedOperationException;
long getMaxEntries() throws UnsupportedOperationException;
Builder setMaxEntries(long maxEntries) throws UnsupportedOperationException;
long getActiveCount();
Builder setActiveCount(long activeCount);
U64 getLookupCount();
Builder setLookupCount(U64 lookupCount);
U64 getMatchedCount();
Builder setMatchedCount(U64 matchedCount);
OFVersion getVersion();
}
}