Uses of Class
org.opennms.protocols.snmp.SnmpVarBind

Packages that use SnmpVarBind
org.opennms.bb.dp.capsd.snmp   
org.opennms.protocols.snmp   
 

Uses of SnmpVarBind in org.opennms.bb.dp.capsd.snmp
 

Methods in org.opennms.bb.dp.capsd.snmp with parameters of type SnmpVarBind
 void IpRouteTableEntry.update(SnmpVarBind[] vars)
          This method is used to update the map with the current information from the agent.
 void IpAddrTableEntry.update(SnmpVarBind[] vars)
          This method is used to update the map with the current information from the agent.
 void SystemGroup.update(SnmpVarBind[] vars)
          This method is used to update the map with the current information from the agent.
 void IfTableEntry.update(SnmpVarBind[] vars)
          This method is used to update the map with the current information from the agent.
 void IpNetToMediaTableEntry.update(SnmpVarBind[] vars)
          This method is used to update the map with the current information from the agent.
 

Constructors in org.opennms.bb.dp.capsd.snmp with parameters of type SnmpVarBind
IpRouteTableEntry(SnmpVarBind[] vars)
          The class constructor used to initialize the object to its finalstate.
IpAddrTableEntry(SnmpVarBind[] vars)
          The class constructor used to initialize the object to its initial state.
IfTableEntry(SnmpVarBind[] vars)
          The class constructor used to initialize the object to its initial state.
IpNetToMediaTableEntry(SnmpVarBind[] vars)
          The class constructor used to initialize the object to its finalstate.
 

Uses of SnmpVarBind in org.opennms.protocols.snmp
 

Methods in org.opennms.protocols.snmp that return SnmpVarBind
 SnmpVarBind SnmpPduPacket.getVarBindAt(int ndx)
          Retrieves the variable at the specific index.
 SnmpVarBind SnmpPduPacket.removeVarBindAt(int ndx)
          Removes the variable as defined by the index
 SnmpVarBind[] SnmpPduPacket.toVarBindArray()
          Returns a list of all the variables managed by this protocol data unit.
 SnmpVarBind SnmpPduTrap.getVarBindAt(int ndx)
          Retrieves the variable at the specific index.
 SnmpVarBind SnmpPduTrap.removeVarBindAt(int ndx)
          Removes the variable as defined by the index
 SnmpVarBind[] SnmpPduTrap.toVarBindArray()
          Returns a list of all the variables managed by this protocol data unit.
 

Methods in org.opennms.protocols.snmp with parameters of type SnmpVarBind
 void SnmpPduPacket.addVarBind(SnmpVarBind vb)
          Adds a new variable to the protocol data unit.
 void SnmpPduPacket.addVarBindAt(int ndx, SnmpVarBind vb)
          Adds a variable at a specific index.
 void SnmpPduPacket.setVarBindAt(int ndx, SnmpVarBind vb)
          Sets the specific variable at the requested location.
 void SnmpPduTrap.addVarBind(SnmpVarBind vb)
          Adds a new variable to the protocol data unit.
 void SnmpPduTrap.addVarBindAt(int ndx, SnmpVarBind vb)
          Adds a variable at a specific index.
 void SnmpPduTrap.setVarBindAt(int ndx, SnmpVarBind vb)
          Sets the specific variable at the requested location.
 

Constructors in org.opennms.protocols.snmp with parameters of type SnmpVarBind
SnmpPduPacket(int command, SnmpVarBind[] vars)
          Creates a new pdu with the spcified command and the list of variables.
SnmpVarBind(SnmpVarBind second)
          Class copy constructor.
SnmpPduRequest(int command, SnmpVarBind[] vars)
          Constructs the PDU with the specified command and the passed variables.
SnmpPduBulk(int nonRepeaters, int maxRepititions, SnmpVarBind[] vars)
          Constructs a get bulk request with the specified variables, non-repeaters, and maximum repititions.