Uses of Class
javax.management.snmp.SnmpMsg

Packages that use SnmpMsg
com.sun.jdmk.snmp Provides the core classes which implement common SNMP services. 
com.sun.jdmk.snmp.mpm Provides the classes which implement the Message Processing Models for SNMP version 1, version 2c and version 3. 
javax.management.snmp Provides the core classes which implement common SNMP data types and services
 

Uses of SnmpMsg in com.sun.jdmk.snmp
 

Methods in com.sun.jdmk.snmp that return SnmpMsg
 SnmpMsg SnmpPduFactoryBER.encodeSnmpPdu(SnmpPdu pdu, int maxPktSize)
          Deprecated. Encodes the specified SnmpPdu and returns the resulting SnmpMsg.
 

Methods in com.sun.jdmk.snmp with parameters of type SnmpMsg
 SnmpPdu SnmpPduFactoryBER.decodeSnmpPdu(SnmpMsg msg)
          Deprecated. Calls SnmpMsg.decodeSnmpPdu on the specified message and returns the resulting SnmpPdu.
 

Uses of SnmpMsg in com.sun.jdmk.snmp.mpm
 

Methods in com.sun.jdmk.snmp.mpm with parameters of type SnmpMsg
 byte[] SnmpMsgTranslatorCs2Ctxt.getContextName(SnmpMsg msg)
          Deprecated. A context name can be added at the end of the community string via @ separator.
 byte[] SnmpMsgTranslatorCs2Ctxt.getAccessContext(SnmpMsg msg)
          Deprecated. The access context (used in IP ACL) is the community string.
 int SnmpMsgTranslatorV1V2.getMsgId(SnmpMsg msg)
          Deprecated.  
 int SnmpMsgTranslatorV1V2.getMsgMaxSize(SnmpMsg msg)
          Deprecated.  
 byte SnmpMsgTranslatorV1V2.getMsgFlags(SnmpMsg msg)
          Deprecated.  
 int SnmpMsgTranslatorV1V2.getSecurityLevel(SnmpMsg msg)
          Deprecated.  
 int SnmpMsgTranslatorV1V2.getMsgSecurityModel(SnmpMsg msg)
          Deprecated.  
 SnmpSecurityParameters SnmpMsgTranslatorV1V2.getSecurityParameters(SnmpMsg msg)
          Deprecated.  
 byte[] SnmpMsgTranslatorV1V2.getFlatSecurityParameters(SnmpMsg msg)
          Deprecated. The IP address is used as the ACL key.
 byte[] SnmpMsgTranslatorV1V2.getContextEngineId(SnmpMsg msg)
          Deprecated. Context engine Id is ALL THE TIME the local one.
 byte[] SnmpMsgTranslatorV1V2.getRawContextName(SnmpMsg msg)
          Deprecated. The received community string contains : The context Name + the access context (via @ separator).
 byte[] SnmpMsgTranslatorV1V2.getContextName(SnmpMsg msg)
          Deprecated. A context name can be added at the end of the community string via @ separator.
 byte[] SnmpMsgTranslatorV1V2.getAccessContext(SnmpMsg msg)
          Deprecated. The access context (used in IP ACL) is the community string.
 byte[] SnmpMsgTranslatorV1V2.getEncryptedPdu(SnmpMsg msg)
          Deprecated. No encryption, returns null.
 void SnmpMsgTranslatorV1V2.setContextName(SnmpMsg req, byte[] contextName)
          Deprecated. Does nothing, is used in V3 to set the context name after decryption.
 void SnmpMsgTranslatorV1V2.setContextEngineId(SnmpMsg req, byte[] contextEngineId)
          Deprecated. Does nothing, is used in V3 to set the context engine id after decryption.
 int SnmpMsgTranslatorV3.getMsgId(SnmpMsg msg)
          Deprecated. See SnmpMsgTranslator interface doc.
 int SnmpMsgTranslatorV3.getMsgMaxSize(SnmpMsg msg)
          Deprecated. See SnmpMsgTranslator interface doc.
 byte SnmpMsgTranslatorV3.getMsgFlags(SnmpMsg msg)
          Deprecated. See SnmpMsgTranslator interface doc.
 int SnmpMsgTranslatorV3.getSecurityLevel(SnmpMsg msg)
          Deprecated. See SnmpMsgTranslator interface doc.
 int SnmpMsgTranslatorV3.getMsgSecurityModel(SnmpMsg msg)
          Deprecated. See SnmpMsgTranslator interface doc.
 byte[] SnmpMsgTranslatorV3.getFlatSecurityParameters(SnmpMsg msg)
          Deprecated. See SnmpMsgTranslator interface doc.
 SnmpSecurityParameters SnmpMsgTranslatorV3.getSecurityParameters(SnmpMsg msg)
          Deprecated. See SnmpMsgTranslator interface doc.
 byte[] SnmpMsgTranslatorV3.getContextEngineId(SnmpMsg msg)
          Deprecated. See SnmpMsgTranslator interface doc.
 byte[] SnmpMsgTranslatorV3.getContextName(SnmpMsg msg)
          Deprecated. See SnmpMsgTranslator interface doc.
 byte[] SnmpMsgTranslatorV3.getRawContextName(SnmpMsg msg)
          Deprecated. See SnmpMsgTranslator interface doc.
 byte[] SnmpMsgTranslatorV3.getAccessContext(SnmpMsg msg)
          Deprecated. See SnmpMsgTranslator interface doc.
 byte[] SnmpMsgTranslatorV3.getEncryptedPdu(SnmpMsg msg)
          Deprecated. See SnmpMsgTranslator interface doc.
 void SnmpMsgTranslatorV3.setContextName(SnmpMsg msg, byte[] contextName)
          Deprecated. See SnmpMsgTranslator interface doc.
 void SnmpMsgTranslatorV3.setContextEngineId(SnmpMsg msg, byte[] contextEngineId)
          Deprecated. See SnmpMsgTranslator interface doc.
 int SnmpMsgTranslator.getMsgId(SnmpMsg msg)
          Deprecated. Returns the request or message Id contained in the passed message.
 int SnmpMsgTranslator.getMsgMaxSize(SnmpMsg msg)
          Deprecated. Returns the response max message size.
 byte SnmpMsgTranslator.getMsgFlags(SnmpMsg msg)
          Deprecated. Returns the message flags.
 int SnmpMsgTranslator.getMsgSecurityModel(SnmpMsg msg)
          Deprecated. Returns the message security model.
 int SnmpMsgTranslator.getSecurityLevel(SnmpMsg msg)
          Deprecated. Returns the message security level.
 byte[] SnmpMsgTranslator.getFlatSecurityParameters(SnmpMsg msg)
          Deprecated. Returns an encoded representation of security parameters contained in the passed msg.
 SnmpSecurityParameters SnmpMsgTranslator.getSecurityParameters(SnmpMsg msg)
          Deprecated. Returns the message security parameters.
 byte[] SnmpMsgTranslator.getContextEngineId(SnmpMsg msg)
          Deprecated. Returns the message context Engine Id.
 byte[] SnmpMsgTranslator.getContextName(SnmpMsg msg)
          Deprecated. Returns the message context name.
 byte[] SnmpMsgTranslator.getRawContextName(SnmpMsg msg)
          Deprecated. Returns the raw message context name.
 byte[] SnmpMsgTranslator.getAccessContext(SnmpMsg msg)
          Deprecated. Returns the message access context name.
 byte[] SnmpMsgTranslator.getEncryptedPdu(SnmpMsg msg)
          Deprecated. Returns the message encrypted pdu or null if no encryption.
 void SnmpMsgTranslator.setContextName(SnmpMsg req, byte[] contextName)
          Deprecated. Set the context name of the passed message.
 void SnmpMsgTranslator.setContextEngineId(SnmpMsg req, byte[] contextEngineId)
          Deprecated. Set the context engine Id of the passed message.
 

Uses of SnmpMsg in javax.management.snmp
 

Subclasses of SnmpMsg in javax.management.snmp
 class SnmpMessage
          Deprecated. Use package com.sun.management.snmp in preference to classes in this package. This class may be removed in a future version of Java DMK.
 class SnmpV3Message
          Deprecated. Use package com.sun.management.snmp in preference to classes in this package. This class may be removed in a future version of Java DMK.
 

Methods in javax.management.snmp that return SnmpMsg
 SnmpMsg SnmpPduFactory.encodeSnmpPdu(SnmpPdu pdu, int maxPktSize)
          Deprecated. Encodes the specified SnmpPdu and returns the resulting SnmpMsg.
 

Methods in javax.management.snmp with parameters of type SnmpMsg
 SnmpPdu SnmpPduFactory.decodeSnmpPdu(SnmpMsg msg)
          Deprecated. Decodes the specified SnmpMsg and returns the resulting SnmpPdu.
 


FCS Release
jdmk-5_1-b34.1 2005.02.10_16:46:09_MET

Copyright 1998-2004 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms.