/*
* This Java file has been generated by smidump 0.4.5. Do not edit!
* It is intended to be used within a Java AgentX sub-agent environment.
*
* $Id: IfStackTable.java 4432 2006-05-29 16:21:11Z strauss $
*/
/**
This class represents a Java AgentX (JAX) implementation of
the table ifStackTable defined in IF-MIB.
@version 1
@author smidump 0.4.5
@see AgentXTable
*/
import java.util.Vector;
import jax.AgentXOID;
import jax.AgentXVarBind;
import jax.AgentXResponsePDU;
import jax.AgentXSetPhase;
import jax.AgentXTable;
import jax.AgentXEntry;
public class IfStackTable extends AgentXTable
{
// entry OID
private final static long[] OID = {1, 3, 6, 1, 2, 1, 31, 1, 2, 1};
// constructors
public IfStackTable()
{
oid = new AgentXOID(OID);
// register implemented columns
columns.addElement(new Long(3));
}
public IfStackTable(boolean shared)
{
super(shared);
oid = new AgentXOID(OID);
// register implemented columns
columns.addElement(new Long(3));
}
public AgentXVarBind getVarBind(AgentXEntry entry, long column)
{
AgentXOID oid = new AgentXOID(getOID(), column, entry.getInstance());
switch ((int)column) {
case 3: // ifStackStatus
{
int value = ((IfStackEntry)entry).get_ifStackStatus();
return new AgentXVarBind(oid, AgentXVarBind.INTEGER, value);
}
}
return null;
}
public int setEntry(AgentXSetPhase phase,
AgentXEntry entry,
long column,
AgentXVarBind vb)
{
switch ((int)column) {
case 3: // ifStackStatus
{
if (vb.getType() != AgentXVarBind.INTEGER)
return AgentXResponsePDU.WRONG_TYPE;
else
return ((IfStackEntry)entry).set_ifStackStatus(phase, vb.intValue());
}
}
return AgentXResponsePDU.NOT_WRITABLE;
}
}