Uses of Interface
org.snmp4j.agent.mo.MOTableModel
-
Packages that use MOTableModel Package Description org.snmp4j.agent org.snmp4j.agent.mo org.snmp4j.agent.mo.snmp org.snmp4j.agent.mo.snmp.dh org.snmp4j.agent.mo.snmp4j -
-
Uses of MOTableModel in org.snmp4j.agent
Methods in org.snmp4j.agent with type parameters of type MOTableModel Modifier and Type Method Description static <R extends MOTableRow,T extends MOTable<R,? extends MOColumn,? extends MOTableModel<R>>>
voidDefaultMOServer. registerTableRowListener(MOServer server, MOTableRowListener<R> listener)Register a singleMOTableRowListenerwith all tables in the specifiedMOServer.static <R extends MOTableRow,T extends MOTable<R,? extends MOColumn,? extends MOTableModel<R>>>
voidDefaultMOServer. unregisterTableRowListener(MOServer server, MOTableRowListener<R> listener)Unregister a singleMOTableRowListenerwith all tables in the specifiedMOServer. -
Uses of MOTableModel in org.snmp4j.agent.mo
Classes in org.snmp4j.agent.mo with type parameters of type MOTableModel Modifier and Type Class Description classDefaultMOTable<R extends MOTableRow,C extends MOColumn,M extends MOTableModel<R>>TheDefaultMOTableclass is the default implementation of theMOTableclass.interfaceMOTable<R extends MOTableRow,C extends MOColumn,M extends MOTableModel<R>>TheMOTableinterface describes SNMP conceptual tables.Subinterfaces of MOTableModel in org.snmp4j.agent.mo Modifier and Type Interface Description interfaceMOMutableTableModel<R extends MOTableRow>TheMOMutableTableModeldefines the interface for mutable table models.Classes in org.snmp4j.agent.mo that implement MOTableModel Modifier and Type Class Description classDefaultMOMutableTableModel<R extends MOTableRow>classDefaultMOTableModel<R extends MOTableRow>Fields in org.snmp4j.agent.mo declared as MOTableModel Modifier and Type Field Description protected MDefaultMOTable. modelMethods in org.snmp4j.agent.mo with type parameters of type MOTableModel Modifier and Type Method Description default <R extends MOTableRow,M extends MOTableModel<R>>
MOTable<R,MOColumn,M>MOFactory. createTable(org.snmp4j.smi.OID oid, MOTableIndex indexDef, MOColumn[] columns)Creates a MOTable instance for the supplied OID, index definition, and columns with theDefaultMOMutableTableModelas table model.default <R extends MOTableRow,M extends MOTableModel<R>>
MOTable<R,MOColumn,M>MOFactory. createTable(org.snmp4j.smi.OID oid, MOTableIndex indexDef, MOColumn[] columns, M model)Creates a MOTable instance for the supplied OID, index definition, columns, and table model.<R extends MOTableRow,M extends MOTableModel<R>>
MOTable<R,MOColumn,M>MOFactoryAdapter. createTable(org.snmp4j.smi.OID oid, MOTableIndex indexDef, MOColumn[] columns)<R extends MOTableRow,M extends MOTableModel<R>>
MOTable<R,MOColumn,M>MOFactoryAdapter. createTable(org.snmp4j.smi.OID oid, MOTableIndex indexDef, MOColumn[] columns, M model)default <R extends MOTableRow,M extends MOTableModel<? extends R>>
MMOFactory. createTableModel(org.snmp4j.smi.OID tableOID, MOTableIndex indexDef, MOColumn[] columns)Creates a table model (by default aDefaultMOMutableTableModel).<R extends MOTableRow,M extends MOTableModel<? extends R>>
MMOFactoryAdapter. createTableModel(org.snmp4j.smi.OID tableOID, MOTableIndex indexDef, MOColumn[] columns)Methods in org.snmp4j.agent.mo that return types with arguments of type MOTableModel Modifier and Type Method Description MOTable<BaseRow,? extends MOColumn,? extends MOTableModel<BaseRow>>MOTableRelation. getBaseTable()MOTable<DependentRow,? extends MOColumn,? extends MOTableModel<DependentRow>>MOTableRelation. getDependentTable()MOTable<DependentRow,? extends MOColumn,? extends MOTableModel<DependentRow>>MOTableRelation.RelationShipListener. getDependentTable()MOTable<R,? extends MOColumn,? extends MOTableModel<R>>MOTableRowEvent. getTable()Method parameters in org.snmp4j.agent.mo with type arguments of type MOTableModel Modifier and Type Method Description default <BaseRow extends MOTableRow,DependentRow extends MOTableRow>
MOTableRelation<BaseRow,DependentRow>MOFactory. createTableRelation(MOTable<BaseRow,? extends MOColumn,? extends MOTableModel<BaseRow>> baseTable, MOTable<DependentRow,? extends MOColumn,? extends MOTableModel<DependentRow>> dependentTable)Creates a relation between two tables.<BaseRow extends MOTableRow,DependentRow extends MOTableRow>
MOTableRelation<BaseRow,DependentRow>MOFactoryAdapter. createTableRelation(MOTable<BaseRow,? extends MOColumn,? extends MOTableModel<BaseRow>> baseTable, MOTable<DependentRow,? extends MOColumn,? extends MOTableModel<DependentRow>> dependentTable)<R extends MOTableRow>
voidMOColumn. setTable(MOTable<R,? extends MOColumn,? extends MOTableModel<R>> table)Sets the table instance this columnar object is contained in.Constructor parameters in org.snmp4j.agent.mo with type arguments of type MOTableModel Constructor Description MOTableRelation(MOTable<BaseRow,? extends MOColumn,? extends MOTableModel<BaseRow>> baseTable, MOTable<DependentRow,? extends MOColumn,? extends MOTableModel<DependentRow>> dependentTable)Creates a table relation from a base table and the dependent table.MOTableRowEvent(Object source, MOTable<R,? extends MOColumn,? extends MOTableModel<R>> table, R row, int type)Creates a table row event based on table, row and type that cannot be canceled by the event listener.MOTableRowEvent(Object source, MOTable<R,? extends MOColumn,? extends MOTableModel<R>> table, R 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(Object source, MOTable<R,? extends MOColumn,? extends MOTableModel<R>> table, R row, int type, MOTableRowEvent.OriginType originType)Creates a table row event based on table, row and type that cannot be canceled by the event listener.MOTableRowEvent(Object source, MOTable<R,? extends MOColumn,? extends MOTableModel<R>> table, R row, int type, MOTableRowEvent.OriginType originType, 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(Object source, MOTable<R,? extends MOColumn,? extends MOTableModel<R>> table, R 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(Object source, MOTable<R,? extends MOColumn,? extends MOTableModel<R>> table, R row, MOTableRow preparedChanges, int type, boolean deniable)Creates a table row event based on table, row, prepared changes, and type.MOTableRowEvent(Object source, MOTable<R,? extends MOColumn,? extends MOTableModel<R>> table, R row, MOTableRow preparedChanges, int type, boolean deniable, int numberOfConsecutiveEventsOfSameOrigin)Creates a table row event based on table, row, prepared changes, and type that cannot be canceled by the event listener. -
Uses of MOTableModel in org.snmp4j.agent.mo.snmp
Classes in org.snmp4j.agent.mo.snmp that implement MOTableModel Modifier and Type Class Description classUsmMIB.UsmTableModelMethod parameters in org.snmp4j.agent.mo.snmp with type arguments of type MOTableModel Modifier and Type Method Description voidSnmpCommunityMIB. setBaseTableSnmpTargetAddrEntry(MOTable<SnmpTargetMIB.SnmpTargetAddrEntryRow,? extends MOColumn,? extends MOTableModel<SnmpTargetMIB.SnmpTargetAddrEntryRow>> baseTable)<R extends MOTableRow>
voidRowStatus. setTable(MOTable<R,? extends MOColumn,? extends MOTableModel<R>> table)Sets the table instance this columnar object is contained in.voidRowStatus. unsetTable(MOTable<R,? extends MOColumn,? extends MOTableModel<R>> table)Unsets the table instance and thus unregisters itself asMOChangeListenerandMOTableRowListener. -
Uses of MOTableModel in org.snmp4j.agent.mo.snmp.dh
Methods in org.snmp4j.agent.mo.snmp.dh that return types with arguments of type MOTableModel Modifier and Type Method Description MOTable<SnmpUsmDhObjectsMib.UsmDHKickstartEntryRow,MOColumn,MOTableModel<SnmpUsmDhObjectsMib.UsmDHKickstartEntryRow>>SnmpUsmDhObjectsMib. getUsmDHKickstartEntry()MOTable<SnmpUsmDhObjectsMib.UsmDHUserKeyEntryRow,MOColumn,MOTableModel<SnmpUsmDhObjectsMib.UsmDHUserKeyEntryRow>>SnmpUsmDhObjectsMib. getUsmDHUserKeyEntry() -
Uses of MOTableModel in org.snmp4j.agent.mo.snmp4j
Methods in org.snmp4j.agent.mo.snmp4j that return types with arguments of type MOTableModel Modifier and Type Method Description MOTable<Snmp4jProxyMib.Snmp4jProxyEntryRow,MOColumn,MOTableModel<Snmp4jProxyMib.Snmp4jProxyEntryRow>>Snmp4jProxyMib. getSnmp4jProxyEntry()
-