|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
*/ |
|
package com.sun.jmx.snmp.internal; |
|
/** |
|
* 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. |
|
* <p><b>This API is a Sun Microsystems internal API and is subject |
|
* to change without notice.</b></p> |
|
* @since 1.5 |
|
*/ |
|
|
|
public class SnmpDecryptedPdu { |
|
|
|
|
|
*/ |
|
public byte[] data = null; |
|
|
|
|
|
*/ |
|
public int dataLength = 0; |
|
|
|
|
|
*/ |
|
public byte[] contextName = null; |
|
|
|
|
|
*/ |
|
public byte[] contextEngineId = null; |
|
} |