public interface ManagedObjectValueAccess extends ManagedObject
ManagedObjectValueAccess
interface provides direct
access to instance values of a ManagedObject
.Modifier and Type | Method and Description |
---|---|
org.snmp4j.smi.Variable |
getValue(org.snmp4j.smi.OID instanceOID)
Returns the variable (a copy thereof) with the specified instance OID
managed by this
ManagedObject . |
boolean |
setValue(org.snmp4j.smi.VariableBinding newValueAndInstanceOID)
Sets the value of a particular MIB object instance managed by
this
ManagedObject . |
org.snmp4j.smi.Variable getValue(org.snmp4j.smi.OID instanceOID)
ManagedObject
.instanceOID
- the instance OID of the value. Thus, for scalar values with .0 suffix
and for tabular objects with table index suffix.Variable
or null
if
such a variable does not exist.boolean setValue(org.snmp4j.smi.VariableBinding newValueAndInstanceOID)
ManagedObject
. This is a low level operation, thus
no change events will be fired.newValueAndInstanceOID
- a VariableBinding
identifying the object instance to modify
by its OID and the new value by its variable part.true
if the object instance exists and has been modified
successfully, false
otherwise.Copyright © 2019 SNMP4J.org. All rights reserved.