1. /*
  2. * @(#)file SnmpPduBulkType.java
  3. * @(#)author Sun Microsystems, Inc.
  4. * @(#)version 1.13
  5. * @(#)date 04/09/15
  6. *
  7. * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
  8. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
  9. *
  10. */
  11. package com.sun.jmx.snmp;
  12. /**
  13. * Interface implemented by classes modelizing bulk pdu.
  14. * <p><b>This API is a Sun Microsystems internal API and is subject
  15. * to change without notice.</b></p>
  16. * @since 1.5
  17. */
  18. public interface SnmpPduBulkType extends SnmpAckPdu {
  19. /**
  20. * The <CODE>max-repetitions</CODE> setter.
  21. * @param max Maximum repetition.
  22. */
  23. public void setMaxRepetitions(int max);
  24. /**
  25. * The <CODE>non-repeaters</CODE> setter.
  26. * @param nr Non repeaters.
  27. */
  28. public void setNonRepeaters(int nr);
  29. /**
  30. * The <CODE>max-repetitions</CODE> getter.
  31. * @return Maximum repetition.
  32. */
  33. public int getMaxRepetitions();
  34. /**
  35. * The <CODE>non-repeaters</CODE> getter.
  36. * @return Non repeaters.
  37. */
  38. public int getNonRepeaters();
  39. }