1 /* 2 * @(#)file SnmpDecryptedPdu.java 3 * @(#)author Sun Microsystems, Inc. 4 * @(#)version 1.15 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.internal; 12 /** 13 * Class returned by <CODE>SnmpSecuritySubSystem</CODE> and <CODE>SnmpSecurityModel</CODE>. If privacy is applied, the received pdu must be decrypted. This class contains the field of of a decrypted scoped 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 class SnmpDecryptedPdu { 20 /** 21 * Decrypted pdu data. 22 */ 23 public byte[] data = null; 24 /** 25 * Decrypted pdu data length. 26 */ 27 public int dataLength = 0; 28 /** 29 * Decrypted context name. 30 */ 31 public byte[] contextName = null; 32 /** 33 * Decrypted context engine Id. 34 */ 35 public byte[] contextEngineId = null; 36 } 37