FileDocCategorySizeDatePackage
SnmpMsgTranslator.javaAPI DocJava SE 5 API3743Fri Aug 26 14:55:06 BST 2005com.sun.jmx.snmp.mpm

SnmpMsgTranslator

public interface SnmpMsgTranslator
The translator interface is implemented by classes dealing with a specific SNMP protocol version. SnmpMsgTranslator are used in conjonction with SnmpMsgProcessingModel implementations.

This API is a Sun Microsystems internal API and is subject to change without notice.

since
1.5

Fields Summary
Constructors Summary
Methods Summary
public byte[]getAccessContext(com.sun.jmx.snmp.SnmpMsg msg)
Returns the message accesscontext name. This access context name is used when dealing with access rights (eg: community for V1/V2 or context name for V3).The message is a generic one that is narrowed in the object implementing this interface.

public byte[]getContextEngineId(com.sun.jmx.snmp.SnmpMsg msg)
Returns the message context Engine Id. The message is a generic one that is narrowed in the object implementing this interface.

public byte[]getContextName(com.sun.jmx.snmp.SnmpMsg msg)
Returns the message context name. The message is a generic one that is narrowed in the object implementing this interface.

public byte[]getEncryptedPdu(com.sun.jmx.snmp.SnmpMsg msg)
Returns the message encrypted pdu or null if no encryption. The message is a generic one that is narrowed in the object implementing this interface.

public byte[]getFlatSecurityParameters(com.sun.jmx.snmp.SnmpMsg msg)
Returns an encoded representation of security parameters contained in the passed msg. The message is a generic one that is narrowed in the object implementing this interface.

public bytegetMsgFlags(com.sun.jmx.snmp.SnmpMsg msg)
Returns the message flags. The message is a generic one that is narrowed in the object implementing this interface.

public intgetMsgId(com.sun.jmx.snmp.SnmpMsg msg)
Returns the request or message Id contained in the passed message. The message is a generic one that is narrowed in the object implementing this interface.

public intgetMsgMaxSize(com.sun.jmx.snmp.SnmpMsg msg)
Returns the response max message size. The message is a generic one that is narrowed in the object implementing this interface.

public intgetMsgSecurityModel(com.sun.jmx.snmp.SnmpMsg msg)
Returns the message security model. The message is a generic one that is narrowed in the object implementing this interface.

public byte[]getRawContextName(com.sun.jmx.snmp.SnmpMsg msg)
Returns the raw message context name. Raw mean as it is received from the network, without translation. It can be useful when some data are piggy backed in the context name.The message is a generic one that is narrowed in the object implementing this interface.

public intgetSecurityLevel(com.sun.jmx.snmp.SnmpMsg msg)
Returns the message security level. The message is a generic one that is narrowed in the object implementing this interface.

public com.sun.jmx.snmp.SnmpSecurityParametersgetSecurityParameters(com.sun.jmx.snmp.SnmpMsg msg)
Returns the message security parameters. The message is a generic one that is narrowed in the object implementing this interface.

public voidsetContextEngineId(com.sun.jmx.snmp.SnmpMsg req, byte[] contextEngineId)
Set the context engine Id of the passed message.

public voidsetContextName(com.sun.jmx.snmp.SnmpMsg req, byte[] contextName)
Set the context name of the passed message.