I would like to limit my agent's response to GET BULK requests to 50 (or some configured value). I see the SnmpPDU class has a setMaxRepetitions() method but since my agent code is generated from our MIB, the code I see does not deal with PDU's directly (I guess PDU building is hidden somewhere in the agent libraries). I see that my main class extends SnmpAgent and I see that this class has a send(SnmpPDU) method, so I tried overriding this and setting the max repetitions before calling super.send() but that did not work. Can anyone suggest how this should be done?