• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Java SnmpMsg类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

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



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


示例16: setContextName

import com.sun.jmx.snmp.SnmpMsg; //导入依赖的package包/类
/**
 * Set the context name of the passed message.
 */
public void setContextName(SnmpMsg req, byte[] contextName);
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:5,代码来源:SnmpMsgTranslator.java


示例17: setContextEngineId

import com.sun.jmx.snmp.SnmpMsg; //导入依赖的package包/类
/**
 * Set the context engine Id of the passed message.
 */
public void setContextEngineId(SnmpMsg req, byte[] contextEngineId);
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:5,代码来源:SnmpMsgTranslator.java


示例18: decodeSnmpPdu

import com.sun.jmx.snmp.SnmpMsg; //导入依赖的package包/类
/**
 * Calls {@link com.sun.jmx.snmp.SnmpMsg#decodeSnmpPdu SnmpMsg.decodeSnmpPdu}
 * on the specified message and returns the resulting <CODE>SnmpPdu</CODE>.
 *
 * @param msg The SNMP message to be decoded.
 * @return The resulting SNMP PDU packet.
 * @exception SnmpStatusException If the encoding is invalid.
 *
 * @since 1.5
 */
public SnmpPdu decodeSnmpPdu(SnmpMsg msg) throws SnmpStatusException {
    return msg.decodeSnmpPdu();
}
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:14,代码来源:SnmpPduFactoryBER.java



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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java TaskReportProto类代码示例发布时间:2022-05-22
下一篇:
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap