1 22 23 package org.snmp4j.agent.agentx; 24 25 import org.snmp4j.smi.*; 26 27 public class AgentXTestSetPDU extends AgentXVariableBindingPDU { 28 29 public AgentXTestSetPDU(OctetString context, VariableBinding[] vbs) { 30 super(AGENTX_TESTSET_PDU, context, vbs); 31 } 32 33 public AgentXTestSetPDU(AgentXMessageHeader header) { 34 super(header); 35 if (header.getType() != AGENTX_TESTSET_PDU) { 36 throw new IllegalArgumentException (); 37 } 38 } 39 40 } 41 | Popular Tags |