Uses of Class
snmp.SNMPv1TrapPDU

Packages that use SNMPv1TrapPDU
Default Package   
snmp The snmp package defines classes used to communicate with SNMP devices. 
 

Uses of SNMPv1TrapPDU in
 

Methods in Default Package with parameters of type SNMPv1TrapPDU
 void SNMPTrapTest.processv1Trap(SNMPv1TrapPDU pdu)
           
 

Uses of SNMPv1TrapPDU in snmp
 

Methods in snmp that return SNMPv1TrapPDU
 SNMPv1TrapPDU SNMPMessage.getv1TrapPDU()
          Utility method which returns the PDU contained in the SNMP message as an SNMPv1TrapPDU.
 

Methods in snmp with parameters of type SNMPv1TrapPDU
 void SNMPTrapSenderInterface.sendTrap(int version, java.net.InetAddress hostAddress, java.lang.String community, SNMPv1TrapPDU pdu)
          Send the supplied SNMPv1 trap pdu to the specified host, using the supplied version number and community name.
 void SNMPTrapSenderInterface.sendTrap(java.net.InetAddress hostAddress, java.lang.String community, SNMPv1TrapPDU pdu)
          Send the supplied trap pdu to the specified host, using the supplied community name and using 0 for the version field in the SNMP message (corresponding to SNMP version 1).
 void SNMPv1TrapListener.processv1Trap(SNMPv1TrapPDU trapPDU)
           
 

Constructors in snmp with parameters of type SNMPv1TrapPDU
SNMPMessage(int version, java.lang.String community, SNMPv1TrapPDU pdu)
          Create an SNMP message with specified version, community, and trap pdu.