1 29 30 31 package snmp; 32 33 34 35 36 149 150 151 public class SNMPv2TrapPDU extends SNMPPDU 152 { 153 154 155 156 160 161 public SNMPv2TrapPDU(SNMPTimeTicks sysUptime, SNMPObjectIdentifier snmpTrapOID, SNMPSequence varList) 162 throws SNMPBadValueException 163 { 164 super(SNMPBERCodec.SNMPv2TRAP, 0, 0, 0, varList); 165 166 SNMPObjectIdentifier sysUptimeOID = new SNMPObjectIdentifier("1.3.6.1.2.1.1.3.0"); 168 SNMPVariablePair sysUptimePair = new SNMPVariablePair(sysUptimeOID, sysUptime); 169 varList.insertSNMPObjectAt(sysUptimePair, 0); 170 171 SNMPObjectIdentifier snmpTrapOIDOID = new SNMPObjectIdentifier("1.3.6.1.6.3.1.1.4.1.0"); 173 SNMPVariablePair snmpOIDPair = new SNMPVariablePair(snmpTrapOIDOID, snmpTrapOID); 174 varList.insertSNMPObjectAt(snmpOIDPair, 1); 175 176 } 177 178 179 180 184 185 public SNMPv2TrapPDU(SNMPObjectIdentifier snmpTrapOID, SNMPTimeTicks sysUptime) 186 throws SNMPBadValueException 187 { 188 this(sysUptime, snmpTrapOID, new SNMPSequence()); 189 } 190 191 192 193 194 198 199 protected SNMPv2TrapPDU(byte[] enc) 200 throws SNMPBadValueException 201 { 202 super(enc, SNMPBERCodec.SNMPv2TRAP); 203 204 SNMPSequence varBindList = this.getVarBindList(); 207 208 209 if (varBindList.size() < 2) 210 { 211 throw new SNMPBadValueException("Bad v2 Trap PDU: missing snmpTrapOID or sysUptime"); 212 } 213 214 SNMPSequence variablePair = (SNMPSequence)varBindList.getSNMPObjectAt(0); 216 SNMPObjectIdentifier oid = (SNMPObjectIdentifier)variablePair.getSNMPObjectAt(0); 217 SNMPObject value = variablePair.getSNMPObjectAt(1); 218 SNMPObjectIdentifier sysUptimeOID = new SNMPObjectIdentifier("1.3.6.1.2.1.1.3.0"); 219 if (!(value instanceof SNMPTimeTicks) || !oid.equals(sysUptimeOID)) 220 { 221 throw new SNMPBadValueException("Bad v2 Trap PDU: bad sysUptime in variable binding list"); 222 } 223 224 variablePair = (SNMPSequence)varBindList.getSNMPObjectAt(1); 226 oid = (SNMPObjectIdentifier)variablePair.getSNMPObjectAt(0); 227 value = variablePair.getSNMPObjectAt(1); 228 SNMPObjectIdentifier snmpTrapOIDOID = new SNMPObjectIdentifier("1.3.6.1.6.3.1.1.4.1.0"); 229 if (!(value instanceof SNMPObjectIdentifier) || !oid.equals(snmpTrapOIDOID)) 230 { 231 throw new SNMPBadValueException("Bad v2 Trap PDU: bad snmpTrapOID in variable binding list"); 232 } 233 234 } 235 236 237 238 239 243 244 public SNMPObjectIdentifier getSNMPTrapOID() 245 { 246 SNMPSequence contents = this.getVarBindList(); 247 SNMPSequence variablePair = (SNMPSequence)contents.getSNMPObjectAt(1); 248 return (SNMPObjectIdentifier)variablePair.getSNMPObjectAt(1); 249 } 250 251 252 253 257 258 public SNMPTimeTicks getSysUptime() 259 { 260 SNMPSequence contents = this.getVarBindList(); 261 SNMPSequence variablePair = (SNMPSequence)contents.getSNMPObjectAt(0); 262 return (SNMPTimeTicks)variablePair.getSNMPObjectAt(1); 263 } 264 265 266 }
| Popular Tags
|