Module org.snmp4j.agent
Package org.snmp4j.agent.mo.snmp4j
Class Snmp4jConfigMib.Snmp4jCfgStorageSeqEntryRow
- java.lang.Object
-
- org.snmp4j.agent.mo.DefaultMOTableRow
-
- org.snmp4j.agent.mo.DefaultMOMutableRow2PC
-
- org.snmp4j.agent.mo.snmp4j.Snmp4jConfigMib.Snmp4jCfgStorageSeqEntryRow
-
- All Implemented Interfaces:
Comparable<SubRequest<?>>
,MOMutableRow2PC<SubRequest<?>>
,MOMutableTableRow
,MOTableRow
- Enclosing class:
- Snmp4jConfigMib
public class Snmp4jConfigMib.Snmp4jCfgStorageSeqEntryRow extends DefaultMOMutableRow2PC
-
-
Field Summary
-
Fields inherited from class org.snmp4j.agent.mo.DefaultMOTableRow
index, values
-
-
Constructor Summary
Constructors Constructor Description Snmp4jCfgStorageSeqEntryRow(org.snmp4j.smi.OID index, org.snmp4j.smi.Variable[] values)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.snmp4j.smi.Integer32
getSnmp4jCfgStorageSeqRowStatus()
org.snmp4j.smi.Integer32
getSnmp4jCfgStorageSeqStorageType()
org.snmp4j.smi.OID
getSnmp4jCfgStorageSeqSubtree()
org.snmp4j.smi.Variable
getValue(int column)
Gets the value at the specified column index.void
setSnmp4jCfgStorageSeqRowStatus(org.snmp4j.smi.Integer32 newColValue)
void
setSnmp4jCfgStorageSeqStorageType(org.snmp4j.smi.Integer32 newColValue)
void
setSnmp4jCfgStorageSeqSubtree(org.snmp4j.smi.OID newColValue)
void
setValue(int column, org.snmp4j.smi.Variable value)
Sets the value of a column of this row.-
Methods inherited from class org.snmp4j.agent.mo.DefaultMOMutableRow2PC
cleanup, cleanupRow, commit, commitRow, getBaseRow, getIndex, getResultingValue, getUserObject, prepare, prepareRow, setBaseRow, setUserObject, size, toString, undo, undoRow
-
Methods inherited from class org.snmp4j.agent.mo.DefaultMOTableRow
compareTo, equals, getColumnValue, hashCode, toStringMembers
-
-
-
-
Method Detail
-
getSnmp4jCfgStorageSeqSubtree
public org.snmp4j.smi.OID getSnmp4jCfgStorageSeqSubtree()
-
setSnmp4jCfgStorageSeqSubtree
public void setSnmp4jCfgStorageSeqSubtree(org.snmp4j.smi.OID newColValue)
-
getSnmp4jCfgStorageSeqStorageType
public org.snmp4j.smi.Integer32 getSnmp4jCfgStorageSeqStorageType()
-
setSnmp4jCfgStorageSeqStorageType
public void setSnmp4jCfgStorageSeqStorageType(org.snmp4j.smi.Integer32 newColValue)
-
getSnmp4jCfgStorageSeqRowStatus
public org.snmp4j.smi.Integer32 getSnmp4jCfgStorageSeqRowStatus()
-
setSnmp4jCfgStorageSeqRowStatus
public void setSnmp4jCfgStorageSeqRowStatus(org.snmp4j.smi.Integer32 newColValue)
-
getValue
public org.snmp4j.smi.Variable getValue(int column)
Description copied from interface:MOTableRow
Gets the value at the specified column index.- Specified by:
getValue
in interfaceMOTableRow
- Overrides:
getValue
in classDefaultMOMutableRow2PC
- Parameters:
column
- the zero-based column index.- Returns:
- the value at the specified index.
-
setValue
public void setValue(int column, org.snmp4j.smi.Variable value)
Description copied from interface:MOMutableTableRow
Sets the value of a column of this row.- Specified by:
setValue
in interfaceMOMutableTableRow
- Overrides:
setValue
in classDefaultMOMutableRow2PC
- Parameters:
column
- the (zero-based) column index.value
- the new value for the specified column. Implementations of this method may not check the value's type to match the columns type for performance reasons. Thus, the caller have to make sure that the type's match to avoid runtime exceptions later.
-
-