1 /* 2 * @(#)file SnmpAckPdu.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 to be implemented by PDUs that are acknowledged (eg: 14 * request, bulk). 15 * <p><b>This API is a Sun Microsystems internal API and is subject 16 * to change without notice.</b></p> 17 * @since 1.5 18 */ 19 public interface SnmpAckPdu { 20 /** 21 * Returns the PDU to use for the response. 22 * @return The response PDU. 23 */ 24 public SnmpPdu getResponsePdu(); 25 } 26