Uses of Interface
org.snmp4j.agent.mo.MOTableRow

Packages that use MOTableRow
org.snmp4j.agent.cfg   
org.snmp4j.agent.example   
org.snmp4j.agent.mo   
org.snmp4j.agent.mo.snmp   
org.snmp4j.agent.mo.snmp4j   
org.snmp4j.agent.mo.snmp4j.example   
 

Uses of MOTableRow in org.snmp4j.agent.cfg
 

Methods in org.snmp4j.agent.cfg that return MOTableRow
 MOTableRow[] AgentConfig.getTableRows(org.snmp4j.smi.OID tableOID)
           
 

Uses of MOTableRow in org.snmp4j.agent.example
 

Classes in org.snmp4j.agent.example that implement MOTableRow
 class Snmp4jDemoMib.Snmp4jDemoEntryRow
           
 

Uses of MOTableRow in org.snmp4j.agent.mo
 

Classes in org.snmp4j.agent.mo with type parameters of type MOTableRow
 class DefaultMOMutableTableModel<R extends MOTableRow>
           
 class DefaultMOTable<R extends MOTableRow,C extends MOColumn,M extends MOTableModel<R>>
          The DefaultMOTable class is the default implementation of the MOTable class.
 class DefaultMOTableModel<R extends MOTableRow>
           
 interface MOMutableTableModel<R extends MOTableRow>
          The MOMutableTableModel defines the interface for mutable table models.
 interface MOTable<R extends MOTableRow,C extends MOColumn,M extends MOTableModel<R>>
          The MOTable interface describes SNMP conceptual tables.
 interface MOTableModel<R extends MOTableRow>
          The MOTableModel interface defines the base table model interface needed for MOTables.
 interface MOTableRowFactory<R extends MOTableRow>
          A MOTableRowFactory is used to create and delete rows for a table model.
 interface MOTableRowFilter<R extends MOTableRow>
          The MOTableRowFilter interface can be used to filter rows.
 

Subinterfaces of MOTableRow in org.snmp4j.agent.mo
 interface MOMutableRow2PC
          The MOMutableRow2PC interface adds support for 2-Phase-Commit to mutable table rows.
 interface MOMutableTableRow
          The MOMutableTableRow extends MOTableRow by means to change a cells value and to support modifications (i.e.
 

Classes in org.snmp4j.agent.mo that implement MOTableRow
 class DefaultMOMutableRow2PC
           
static class DefaultMOTable.ChangeSet
           
 class DefaultMOTableRow
          The DefaultMOTableRow is the default table row implementation.
 

Methods in org.snmp4j.agent.mo that return MOTableRow
 MOTableRow DefaultMOFactory.createRow(org.snmp4j.smi.OID index, org.snmp4j.smi.Variable[] values)
           
 MOTableRow MOTableModelEvent.getAffectedRow()
          Gets the affected row (if a single row is affected by the event).
 MOTableRow DefaultMOMutableRow2PC.getBaseRow()
           
 MOTableRow DefaultMOTableRow.getBaseRow()
           
 MOTableRow DefaultMOTable.ChangeSet.getBaseRow()
           
 MOTableRow MOTableRow.getBaseRow()
          Gets the associated base row for this row (if this row is a dependent row).
 MOTableRow MOTableRowEvent.getPreparedChanges()
           
 MOTableRow MOTableRowEvent.getRow()
           
protected  MOTableRow[] MOTableRelation.removeDependentRows(MOTableRow baseTableRow)
          Removes all dependent rows for the specified base table row from the dependent table.
 

Methods in org.snmp4j.agent.mo that return types with arguments of type MOTableRow
 java.util.List<MOTableRow> DefaultMOMutableTableModel.getRows(org.snmp4j.smi.OID lowerBound, org.snmp4j.smi.OID upperBoundEx)
          Returns a lexicographic ordered list of the rows in the specified index range.
 

Methods in org.snmp4j.agent.mo with parameters of type MOTableRow
protected  void MOTableRelation.addDependentRows(MOTableRow baseTableRow)
          Adds all dependent rows for the specified base table row to the dependent table.
protected  DefaultMOTable.ChangeSet DefaultMOTable.addPendingChanges(SubRequest subRequest, MOTableRow row, boolean newRow)
           
 void MOMutableColumn.cleanup(SubRequest subRequest, MOTableRow row, int column)
           
 void DefaultMOMutableRow2PC.commit(SubRequest subRequest, MOTableRow changeSet, int column)
           
 void MOMutableRow2PC.commit(SubRequest subRequest, MOTableRow changeSet, int column)
          Commits changes to single column.
 void MOMutableColumn.commit(SubRequest subRequest, MOTableRow row, MOTableRow changeSet, int column)
           
 void DefaultMOMutableRow2PC.commitRow(SubRequest subRequest, MOTableRow changeSet)
           
 void MOMutableRow2PC.commitRow(SubRequest subRequest, MOTableRow changeSet)
          Commits a row as described by the supplied change set.
 void DefaultMOFactory.freeRow(MOTableRow row)
           
 void MOColumn.get(SubRequest subRequest, MOTableRow row, int column)
           
protected  int DefaultMOTable.getChangesFromRequest(org.snmp4j.smi.OID index, MOTableRow row, SubRequest request, org.snmp4j.smi.Variable[] values, boolean setDefaultValues, boolean newRow)
           
 org.snmp4j.smi.OID[] MOTableRelation.getDependentIndexes(MOTableRow baseRow)
          Returns the dependent indexes for the specified base row.
protected  org.snmp4j.smi.Variable[] DefaultMOTable.getPersistentValues(MOTableRow row)
          Gets the values of a row that need to be made persistent on behalf of a DefaultMOTable.save(MOOutput output) call.
 org.snmp4j.smi.Variable DefaultMOMutableRow2PC.getResultingValue(int column, MOTableRow changes)
          Returns the value of the specified column that would result if the specified changes would have been applied to the row.
protected  org.snmp4j.smi.Variable DefaultMOTable.getValue(MOTableRow row, int col)
           
 org.snmp4j.smi.Variable MOColumn.getValue(MOTableRow row, int column)
           
 boolean MOTableRelation.hasDependentRow(MOTableRow baseTableRow)
          Indicates whether the specified baseTableRow has any dependent rows.
 boolean MOColumn.isVolatile(MOTableRow row, int column)
          Tests if the supplied row is volatile or persistent.
 void DefaultMOMutableRow2PC.prepare(SubRequest subRequest, MOTableRow changeSet, int column)
           
 void MOMutableRow2PC.prepare(SubRequest subRequest, MOTableRow changeSet, int column)
          Prepares changing a single column.
 void MOMutableColumn.prepare(SubRequest subRequest, MOTableRow row, MOTableRow changeSet, int column)
           
 void DefaultMOMutableRow2PC.prepareRow(SubRequest subRequest, MOTableRow changeSet)
           
 void MOMutableRow2PC.prepareRow(SubRequest subRequest, MOTableRow changeSet)
          Prepares a row for changes described by the supplied change set.
protected  MOTableRow[] MOTableRelation.removeDependentRows(MOTableRow baseTableRow)
          Removes all dependent rows for the specified base table row from the dependent table.
 void DefaultMOMutableRow2PC.setBaseRow(MOTableRow baseRow)
           
 void MOMutableTableRow.setBaseRow(MOTableRow baseRow)
           
 void DefaultMOTableRow.setBaseRow(MOTableRow baseRow)
           
 void DefaultMOTable.ChangeSet.setBaseRow(MOTableRow baseRow)
           
 void MOTableRow.setBaseRow(MOTableRow baseRow)
          Sets the associated base row.
 void MOMutableColumn.undo(SubRequest subRequest, MOTableRow row, int column)
           
protected  boolean MOMutableColumn.validateSetRequest(SubRequest subRequest, MOTableRow row, int column)
           
 

Constructors in org.snmp4j.agent.mo with parameters of type MOTableRow
MOTableModelEvent(java.lang.Object source, int type, MOTableRow affectedRow)
          Creates a model event associated with a single row.
MOTableModelEvent(java.lang.Object source, int type, MOTableRow affectedRow, int columnIndex)
          Creates a model event associated with a single row and column.
MOTableRowEvent(java.lang.Object source, MOTable table, MOTableRow row, int type)
          Creates a table row event based on table, row and type that cannot be canceled by the event listener.
MOTableRowEvent(java.lang.Object source, MOTable table, MOTableRow row, int type, boolean deniable)
          Creates a table row event based on table, row and type that may be canceled by the event listener depending on the specified flag.
MOTableRowEvent(java.lang.Object source, MOTable table, MOTableRow row, MOTableRow preparedChanges, int type)
          Creates a table row event based on table, row, prepared changes, and type that cannot be canceled by the event listener.
MOTableRowEvent(java.lang.Object source, MOTable table, MOTableRow row, MOTableRow preparedChanges, int type, boolean deniable)
          Creates a table row event based on table, row, prepared changes, and type.
 

Uses of MOTableRow in org.snmp4j.agent.mo.snmp
 

Classes in org.snmp4j.agent.mo.snmp with type parameters of type MOTableRow
static class RowStatus.ActiveRowsFilter<R extends MOTableRow>
          The ActiveRowsFilter is a MOTableRowFilter that returns only the active rows of a table with a RowStatus column.
 

Classes in org.snmp4j.agent.mo.snmp that implement MOTableRow
 class NotificationLogMib.NlmConfigLogEntryRow
           
 class NotificationLogMib.NlmLogEntryRow
           
 class NotificationLogMib.NlmLogVariableEntryRow
           
 class NotificationLogMib.NlmStatsLogEntryRow
           
 class SnmpProxyMIB.SnmpProxyRow
           
 class SnmpTargetMIB.SnmpTargetAddrEntryRow
           
 class SnmpTlsTmMib.SnmpTlstmAddrEntryRow
           
 class SnmpTlsTmMib.SnmpTlstmCertToTSNEntryRow
           
 class SnmpTlsTmMib.SnmpTlstmParamsEntryRow
           
 class UsmMIB.UsmTableRow
           
 

Methods in org.snmp4j.agent.mo.snmp that return MOTableRow
 MOTableRow UsmMIB.UsmTableModel.createRow(org.snmp4j.smi.OID index, org.snmp4j.smi.Variable[] values)
           
 MOTableRow RowStatusEvent.getChangeSet()
           
 MOTableRow RowStatusEvent.getRow()
           
 MOTableRow SnmpTargetMIB.getTargetParamsRow(org.snmp4j.smi.OctetString paramsName)
          Returns the SNMP Target Parameters row for the specified name.
 MOTableRow SnmpTargetMIB.getTargetParamsRow(org.snmp4j.smi.OctetString paramsName, boolean activeOnly)
          Returns the SNMP Target Parameters row for the specified name.
 MOTableRow AgentCapabilityList.removeSysOREntry(org.snmp4j.smi.OID index)
          Remove a capabilities description from the exported list.
 MOTableRow SNMPv2MIB.removeSysOREntry(org.snmp4j.smi.OID index)
           
 MOTableRow SNMPv2MIB.SysOREntry.removeSysOREntry(org.snmp4j.smi.OID index)
           
 MOTableRow SnmpTargetMIB.removeTargetAddress(org.snmp4j.smi.OctetString name)
           
 MOTableRow SnmpTargetMIB.removeTargetParams(org.snmp4j.smi.OctetString name)
           
 

Methods in org.snmp4j.agent.mo.snmp that return types with arguments of type MOTableRow
 java.util.Collection<MOTableRow> SnmpTargetMIB.getTargetAddrRowsForTag(org.snmp4j.smi.OctetString tag)
           
 

Methods in org.snmp4j.agent.mo.snmp with parameters of type MOTableRow
protected  void RowStatus.assignNewValue(SubRequest subRequest, MOTableRow row, int column, int newValue)
           
 void UsmKeyChange.commit(SubRequest subRequest, MOTableRow row, MOTableRow changeSet, int column)
           
 void RowStatus.commit(SubRequest subRequest, MOTableRow row, MOTableRow changeSet, int column)
           
 void UsmMIB.UsmTableRow.commitRow(SubRequest subRequest, MOTableRow changeSet)
           
 void SnmpTargetMIB.SnmpTargetAddrEntryRow.commitRow(SubRequest subRequest, MOTableRow changeSet)
           
 void KeyChange.get(SubRequest subRequest, MOTableRow row, int column)
           
 void RowStatus.get(SubRequest subRequest, MOTableRow row, int column)
           
 org.snmp4j.security.AuthenticationProtocol UsmMIB.UsmTableRow.getAuthProtocol(MOTableRow changeSet)
           
 org.snmp4j.smi.OID UsmMIB.UsmTableRow.getAuthProtocolOID(MOTableRow changeSet)
          Gets the OID of the authentication protocol defined by the given change set.
protected  int UsmKeyChange.getDigestLength(UsmMIB.UsmTableRow row, MOTableRow changeSet)
           
 org.snmp4j.security.PrivacyProtocol UsmMIB.UsmTableRow.getPrivProtocol(MOTableRow changeSet)
           
 org.snmp4j.smi.OID UsmMIB.UsmTableRow.getPrivProtocolOID(MOTableRow preparedChanges)
          Gets the OID of the privacy protocol defined by the given change set.
protected  boolean RowStatus.isReady(MOTableRow row, int rowStatusColumn)
           
protected  boolean RowStatus.isReady(MOTableRow row, int rowStatusColumn, MOTableRow changeSet)
           
static boolean RowStatus.isRowActive(MOTableRow row, int rowStatusColumnIndex)
          Tests if the specified row is active.
 boolean StorageType.isVolatile(MOTableRow row, int column)
           
 boolean RowStatus.isVolatile(MOTableRow row, int column)
           
 void UsmMIB.UsmTableRow.prepare(SubRequest subRequest, MOTableRow preparedChanges, int column)
           
 void UsmOwnKeyChange.prepare(SubRequest subRequest, MOTableRow row, MOTableRow changeSet, int column)
           
 void UsmKeyChange.prepare(SubRequest subRequest, MOTableRow row, MOTableRow changeSet, int column)
           
 void RowPointer.prepare(SubRequest subRequest, MOTableRow row, MOTableRow preparedChanges, int column)
           
 void RowStatus.prepare(SubRequest subRequest, MOTableRow row, MOTableRow changeSet, int column)
           
 void SnmpTargetMIB.SnmpTargetAddrEntryRow.prepareRow(SubRequest subRequest, MOTableRow changeSet)
           
protected  void SnmpTargetMIB.removeRowFromTargetAddrTagIndex(MOTableRow removedRow)
           
 void RowStatus.undo(SubRequest subRequest, MOTableRow row, int column)
           
 

Constructors in org.snmp4j.agent.mo.snmp with parameters of type MOTableRow
RowStatusEvent(java.lang.Object source, MOTable table, MOTableRow row, MOTableRow changeSet, int oldStatus, int newStatus)
           
RowStatusEvent(java.lang.Object source, MOTable table, MOTableRow row, MOTableRow changeSet, int oldStatus, int newStatus, boolean deniable)
           
RowStatusEvent(java.lang.Object source, MOTable table, MOTableRow row, MOTableRow changeSet, int oldStatus, int newStatus, boolean deniable, SubRequest request)
          Creates a row status event and associates a security name with the status change.
 

Uses of MOTableRow in org.snmp4j.agent.mo.snmp4j
 

Classes in org.snmp4j.agent.mo.snmp4j that implement MOTableRow
 class Snmp4jLogMib.Snmp4jLogLoggerRow
           
 class Snmp4jProxyMib.Snmp4jProxyEntryRow
           
 

Uses of MOTableRow in org.snmp4j.agent.mo.snmp4j.example
 

Classes in org.snmp4j.agent.mo.snmp4j.example that implement MOTableRow
 class Snmp4jHeartbeatMib.Snmp4jAgentHBCtrlEntryRow
           
 


Copyright 2005-2010 Frank Fock (SNMP4J.org)

Copyright © 2011 SNMP4J.org. All Rights Reserved.