com.sun.jmx.snmp.SnmpMsg Java Examples

The following examples show how to use com.sun.jmx.snmp.SnmpMsg. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: SnmpIncomingResponse.java    From openjdk-8 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Decodes the specified bytes and initializes itself with the received
 * response.
 *
 * @param inputBytes The bytes to be decoded.
 *
 * @exception SnmpStatusException If the specified bytes are not a valid encoding.
 */
public SnmpMsg decodeMessage(byte[] inputBytes,
                             int byteCount,
                             InetAddress address,
                             int port)
    throws SnmpStatusException, SnmpSecurityException;
 
Example #2
Source File: SnmpMsgTranslator.java    From jdk8u_jdk with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Returns the message context name. The message is a generic one that is narrowed in the object implementing this interface.
 */
public byte[] getContextName(SnmpMsg msg);
 
Example #3
Source File: SnmpMsgTranslator.java    From jdk8u-jdk with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Set the context engine Id of the passed message.
 */
public void setContextEngineId(SnmpMsg req, byte[] contextEngineId);
 
Example #4
Source File: SnmpMsgTranslator.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Returns the message context Engine Id. The message is a generic one that is narrowed in the object implementing this interface.
 */
public byte[] getContextEngineId(SnmpMsg msg);
 
Example #5
Source File: SnmpMsgTranslator.java    From jdk8u-dev-jdk with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Returns the message security level. The message is a generic one that is narrowed in the object implementing this interface.
 */
public int getSecurityLevel(SnmpMsg msg);
 
Example #6
Source File: SnmpMsgTranslator.java    From JDKSourceCode1.8 with MIT License 2 votes vote down vote up
/**
 * Returns the message flags. The message is a generic one that is narrowed in the object implementing this interface.
 */
public byte getMsgFlags(SnmpMsg msg);
 
Example #7
Source File: SnmpMsgTranslator.java    From openjdk-8-source with GNU General Public License v2.0 2 votes vote down vote up
/**
 * 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 byte[] getRawContextName(SnmpMsg msg);
 
Example #8
Source File: SnmpOutgoingRequest.java    From JDKSourceCode1.8 with MIT License 2 votes vote down vote up
/**
 * Initializes the message to send with the passed Pdu.
 * <P>
 * If the encoding length exceeds <CODE>maxDataLength</CODE>,
 * the method throws an exception.</P>
 *
 * @param p The PDU to be encoded.
 * @param maxDataLength The maximum length permitted for the data field.
 *
 * @exception SnmpStatusException If the specified PDU <CODE>p</CODE> is
 *    not valid.
 * @exception SnmpTooBigException If the resulting encoding does not fit
 *    into <CODE>maxDataLength</CODE> bytes.
 * @exception ArrayIndexOutOfBoundsException If the encoding exceeds
 *    <CODE>maxDataLength</CODE>.
 */
public SnmpMsg encodeSnmpPdu(SnmpPdu p,
                             int maxDataLength)
    throws SnmpStatusException, SnmpTooBigException;
 
Example #9
Source File: SnmpIncomingResponse.java    From JDKSourceCode1.8 with MIT License 2 votes vote down vote up
/**
 * Decodes the specified bytes and initializes itself with the received
 * response.
 *
 * @param inputBytes The bytes to be decoded.
 *
 * @exception SnmpStatusException If the specified bytes are not a valid encoding.
 */
public SnmpMsg decodeMessage(byte[] inputBytes,
                             int byteCount,
                             InetAddress address,
                             int port)
    throws SnmpStatusException, SnmpSecurityException;
 
Example #10
Source File: SnmpMsgTranslator.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Returns the response max message size. The message is a generic one that is narrowed in the object implementing this interface.
 */
public int getMsgMaxSize(SnmpMsg msg);
 
Example #11
Source File: SnmpMsgTranslator.java    From jdk8u-jdk with GNU General Public License v2.0 2 votes vote down vote up
/**
 * 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 int getMsgId(SnmpMsg msg);
 
Example #12
Source File: SnmpMsgTranslator.java    From jdk8u60 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Returns the message flags. The message is a generic one that is narrowed in the object implementing this interface.
 */
public byte getMsgFlags(SnmpMsg msg);
 
Example #13
Source File: SnmpMsgTranslator.java    From jdk8u60 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Returns the response max message size. The message is a generic one that is narrowed in the object implementing this interface.
 */
public int getMsgMaxSize(SnmpMsg msg);
 
Example #14
Source File: SnmpMsgTranslator.java    From jdk8u60 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * 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 int getMsgId(SnmpMsg msg);
 
Example #15
Source File: SnmpMsgTranslator.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Set the context name of the passed message.
 */
public void setContextName(SnmpMsg req, byte[] contextName);
 
Example #16
Source File: SnmpMsgTranslator.java    From jdk8u60 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Returns the message security model. The message is a generic one that is narrowed in the object implementing this interface.
 */
public int getMsgSecurityModel(SnmpMsg msg);
 
Example #17
Source File: SnmpMsgTranslator.java    From hottub with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Returns the message context Engine Id. The message is a generic one that is narrowed in the object implementing this interface.
 */
public byte[] getContextEngineId(SnmpMsg msg);
 
Example #18
Source File: SnmpMsgTranslator.java    From openjdk-8 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * 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 byte[] getRawContextName(SnmpMsg msg);
 
Example #19
Source File: SnmpIncomingRequest.java    From openjdk-8 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Initializes the response to send with the passed Pdu.
 * <P>
 * If the encoding length exceeds <CODE>maxDataLength</CODE>,
 * the method throws an exception.
 *
 * @param p The PDU to be encoded.
 * @param maxDataLength The maximum length permitted for the data field.
 *
 * @exception SnmpStatusException If the specified <CODE>pdu</CODE>
 *     is not valid.
 * @exception SnmpTooBigException If the resulting encoding does not fit
 * into <CODE>maxDataLength</CODE> bytes.
 * @exception ArrayIndexOutOfBoundsException If the encoding exceeds
 *   <CODE>maxDataLength</CODE>.
 */
public SnmpMsg encodeSnmpPdu(SnmpPdu p,
                             int maxDataLength)
    throws SnmpStatusException, SnmpTooBigException;
 
Example #20
Source File: SnmpMsgTranslator.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 2 votes vote down vote up
/**
 * 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 byte[] getRawContextName(SnmpMsg msg);
 
Example #21
Source File: SnmpMsgTranslator.java    From openjdk-8 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * 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[] getEncryptedPdu(SnmpMsg msg);
 
Example #22
Source File: SnmpMsgTranslator.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Returns the message flags. The message is a generic one that is narrowed in the object implementing this interface.
 */
public byte getMsgFlags(SnmpMsg msg);
 
Example #23
Source File: SnmpMsgTranslator.java    From TencentKona-8 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * 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 byte[] getRawContextName(SnmpMsg msg);
 
Example #24
Source File: SnmpMsgTranslator.java    From jdk8u-jdk with GNU General Public License v2.0 2 votes vote down vote up
/**
 * 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[] getEncryptedPdu(SnmpMsg msg);
 
Example #25
Source File: SnmpMsgTranslator.java    From TencentKona-8 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Returns the message context Engine Id. The message is a generic one that is narrowed in the object implementing this interface.
 */
public byte[] getContextEngineId(SnmpMsg msg);
 
Example #26
Source File: SnmpIncomingResponse.java    From jdk8u-jdk with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Decodes the specified bytes and initializes itself with the received
 * response.
 *
 * @param inputBytes The bytes to be decoded.
 *
 * @exception SnmpStatusException If the specified bytes are not a valid encoding.
 */
public SnmpMsg decodeMessage(byte[] inputBytes,
                             int byteCount,
                             InetAddress address,
                             int port)
    throws SnmpStatusException, SnmpSecurityException;
 
Example #27
Source File: SnmpMsgTranslator.java    From jdk8u-jdk with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Returns the message security level. The message is a generic one that is narrowed in the object implementing this interface.
 */
public int getSecurityLevel(SnmpMsg msg);
 
Example #28
Source File: SnmpMsgTranslator.java    From JDKSourceCode1.8 with MIT License 2 votes vote down vote up
/**
 * Set the context engine Id of the passed message.
 */
public void setContextEngineId(SnmpMsg req, byte[] contextEngineId);
 
Example #29
Source File: SnmpMsgTranslator.java    From openjdk-8-source with GNU General Public License v2.0 2 votes vote down vote up
/**
 * 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 byte[] getFlatSecurityParameters(SnmpMsg msg);
 
Example #30
Source File: SnmpMsgTranslator.java    From TencentKona-8 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Returns the message flags. The message is a generic one that is narrowed in the object implementing this interface.
 */
public byte getMsgFlags(SnmpMsg msg);