Uses of Class
org.opennms.protocols.snmp.SnmpObjectId
-
Packages that use SnmpObjectId Package Description org.opennms.protocols.snmp SNMP protocol datastructure implementation (PDUs, sessions, requests, etc.) -
-
Uses of SnmpObjectId in org.opennms.protocols.snmp
Methods in org.opennms.protocols.snmp that return SnmpObjectId Modifier and Type Method Description SnmpObjectId
SnmpPduTrap. getEnterprise()
Used to get the enterpise identifier of the trap.SnmpObjectId
SnmpVarBind. getName()
Returns the object identifier that names the variable.Methods in org.opennms.protocols.snmp with parameters of type SnmpObjectId Modifier and Type Method Description void
SnmpObjectId. append(SnmpObjectId second)
Appends the passed SnmpObjectId object to self.int
SnmpObjectId. compare(SnmpObjectId cmp)
Lexigraphically compares the object identifer to the passed object identifer.SnmpSyntax
SnmpSession. get(SnmpObjectId oid)
SnmpSyntax[]
SnmpSession. get(SnmpObjectId[] oids)
SnmpSyntax[]
SnmpSession. getBulk(int nonRepeaters, int maxReptitions, SnmpObjectId id)
SnmpSyntax[]
SnmpSession. getBulk(int nonRepeaters, int maxRepititions, SnmpObjectId[] oids)
SnmpSyntax
SnmpSession. getNext(SnmpObjectId oid)
SnmpSyntax[]
SnmpSession. getNext(SnmpObjectId[] oids)
boolean
SnmpObjectId. isRootOf(SnmpObjectId leaf)
Compares the passed object identifier against self to determine if self is the root of the passed object.void
SnmpObjectId. prepend(SnmpObjectId second)
Prepends the passed SnmpObjectId object to self.SnmpSyntax[]
SnmpSession. set(SnmpObjectId[] oids, SnmpSyntax[] values)
SnmpSyntax
SnmpSession. set(SnmpObjectId oid, SnmpSyntax value)
void
SnmpPduTrap. setEnterprise(SnmpObjectId id)
Sets the enterprise identifier for the trap.void
SnmpVarBind. setName(SnmpObjectId name)
Sets the variable's object identifier name.Constructors in org.opennms.protocols.snmp with parameters of type SnmpObjectId Constructor Description SnmpObjectId(SnmpObjectId second)
Creates a duplicate object.SnmpVarBind(SnmpObjectId name)
Constructs a specific variable with the "name" equal to the passed object identifier.SnmpVarBind(SnmpObjectId name, SnmpSyntax value)
Constructs a variable with the passed name and value.
-