当前位置: 首页>>代码示例>>Java>>正文


Java SnmpMsg类代码示例

本文整理汇总了Java中com.sun.jmx.snmp.SnmpMsg的典型用法代码示例。如果您正苦于以下问题:Java SnmpMsg类的具体用法?Java SnmpMsg怎么用?Java SnmpMsg使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


SnmpMsg类属于com.sun.jmx.snmp包,在下文中一共展示了SnmpMsg类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: decodeMessage

import com.sun.jmx.snmp.SnmpMsg; //导入依赖的package包/类
/**
 * 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;
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:14,代码来源:SnmpIncomingResponse.java

示例2: encodeSnmpPdu

import com.sun.jmx.snmp.SnmpMsg; //导入依赖的package包/类
/**
 * 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;
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:20,代码来源:SnmpOutgoingRequest.java

示例3: encodeSnmpPdu

import com.sun.jmx.snmp.SnmpMsg; //导入依赖的package包/类
/**
 * 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;
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:20,代码来源:SnmpIncomingRequest.java

示例4: getMsgId

import com.sun.jmx.snmp.SnmpMsg; //导入依赖的package包/类
/**
 * 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);
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:5,代码来源:SnmpMsgTranslator.java

示例5: getMsgMaxSize

import com.sun.jmx.snmp.SnmpMsg; //导入依赖的package包/类
/**
 * 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);
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:5,代码来源:SnmpMsgTranslator.java

示例6: getMsgFlags

import com.sun.jmx.snmp.SnmpMsg; //导入依赖的package包/类
/**
 * Returns the message flags. The message is a generic one that is narrowed in the object implementing this interface.
 */
public byte getMsgFlags(SnmpMsg msg);
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:5,代码来源:SnmpMsgTranslator.java

示例7: getMsgSecurityModel

import com.sun.jmx.snmp.SnmpMsg; //导入依赖的package包/类
/**
 * 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);
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:5,代码来源:SnmpMsgTranslator.java

示例8: getSecurityLevel

import com.sun.jmx.snmp.SnmpMsg; //导入依赖的package包/类
/**
 * 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);
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:5,代码来源:SnmpMsgTranslator.java

示例9: getFlatSecurityParameters

import com.sun.jmx.snmp.SnmpMsg; //导入依赖的package包/类
/**
 * 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);
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:5,代码来源:SnmpMsgTranslator.java

示例10: getSecurityParameters

import com.sun.jmx.snmp.SnmpMsg; //导入依赖的package包/类
/**
 * Returns the message security parameters. The message is a generic one that is narrowed in the object implementing this interface.
 */
public SnmpSecurityParameters getSecurityParameters(SnmpMsg msg);
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:5,代码来源:SnmpMsgTranslator.java

示例11: getContextEngineId

import com.sun.jmx.snmp.SnmpMsg; //导入依赖的package包/类
/**
 * 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);
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:5,代码来源:SnmpMsgTranslator.java

示例12: getContextName

import com.sun.jmx.snmp.SnmpMsg; //导入依赖的package包/类
/**
 * 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);
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:5,代码来源:SnmpMsgTranslator.java

示例13: getRawContextName

import com.sun.jmx.snmp.SnmpMsg; //导入依赖的package包/类
/**
 * 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);
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:5,代码来源:SnmpMsgTranslator.java

示例14: getAccessContext

import com.sun.jmx.snmp.SnmpMsg; //导入依赖的package包/类
/**
 * 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[] getAccessContext(SnmpMsg msg);
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:5,代码来源:SnmpMsgTranslator.java

示例15: getEncryptedPdu

import com.sun.jmx.snmp.SnmpMsg; //导入依赖的package包/类
/**
 * 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);
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:5,代码来源:SnmpMsgTranslator.java


注:本文中的com.sun.jmx.snmp.SnmpMsg类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。