1 /* 2 * @(#)file SnmpPduBulkType.java 3 * @(#)author Sun Microsystems, Inc. 4 * @(#)version 1.13 5 * @(#)date 08/02/09 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 19 public interface SnmpPduBulkType extends SnmpAckPdu { 20 21 /** 22 * The <CODE>max-repetitions</CODE> setter. 23 * @param max Maximum repetition. 24 */ 25 public void setMaxRepetitions(int max); 26 27 /** 28 * The <CODE>non-repeaters</CODE> setter. 29 * @param nr Non repeaters. 30 */ 31 public void setNonRepeaters(int nr); 32 33 /** 34 * The <CODE>max-repetitions</CODE> getter. 35 * @return Maximum repetition. 36 */ 37 public int getMaxRepetitions(); 38 39 /** 40 * The <CODE>non-repeaters</CODE> getter. 41 * @return Non repeaters. 42 */ 43 public int getNonRepeaters(); 44 } 45