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

Java SnmpUnknownMsgProcModelException类代码示例

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

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



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

示例1: encode

import com.sun.jmx.snmp.SnmpUnknownMsgProcModelException; //导入依赖的package包/类
/**
 * This method is called to encode a full scoped pdu that as not been encrypted. <CODE>contextName</CODE>, <CODE>contextEngineID</CODE> and data are known. It will be routed to the dedicated model according to the version value.
 * <BR>The specified parameters are defined in RFC 2572 (see also the {@link com.sun.jmx.snmp.SnmpV3Message} class).
 * @param version The SNMP protocol version.
 * @param msgID The SNMP message ID.
 * @param msgMaxSize The max message size.
 * @param msgFlags The message flags.
 * @param msgSecurityModel The message security model.
 * @param params The security parameters.
 * @param contextEngineID The context engine ID.
 * @param contextName The context name.
 * @param data The encoded data.
 * @param dataLength The encoded data length.
 * @param outputBytes The buffer containing the encoded message.
 * @return The encoded bytes number.
 */
public int encode(int version,
                  int msgID,
                  int msgMaxSize,
                  byte msgFlags,
                  int msgSecurityModel,
                  SnmpSecurityParameters params,
                  byte[] contextEngineID,
                  byte[] contextName,
                  byte[] data,
                  int dataLength,
                  byte[] outputBytes)
    throws SnmpTooBigException,
           SnmpUnknownMsgProcModelException ;
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:30,代码来源:SnmpMsgProcessingSubSystem.java


示例2: encodePriv

import com.sun.jmx.snmp.SnmpUnknownMsgProcModelException; //导入依赖的package包/类
/**
 * This method is called to encode a full scoped pdu that as been encrypted. <CODE>contextName</CODE>, <CODE>contextEngineID</CODE> and data are not known. It will be routed to the dedicated model according to the version value.
 * <BR>The specified parameters are defined in RFC 2572 (see also the {@link com.sun.jmx.snmp.SnmpV3Message} class).
 * @param version The SNMP protocol version.
 * @param msgID The SNMP message ID.
 * @param msgMaxSize The max message size.
 * @param msgFlags The message flags.
 * @param msgSecurityModel The message security model.
 * @param params The security parameters.
 * @param encryptedPdu The encrypted pdu.
 * @param outputBytes The buffer containing the encoded message.
 * @return The encoded bytes number.
 */
public int encodePriv(int version,
                      int msgID,
                      int msgMaxSize,
                      byte msgFlags,
                      int msgSecurityModel,
                      SnmpSecurityParameters params,
                      byte[] encryptedPdu,
                      byte[] outputBytes) throws SnmpTooBigException, SnmpUnknownMsgProcModelException;
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:22,代码来源:SnmpMsgProcessingSubSystem.java


示例3: getIncomingRequest

import com.sun.jmx.snmp.SnmpUnknownMsgProcModelException; //导入依赖的package包/类
/**
 * This method is called when a call is received from the network.
 * @param model The model ID.
 * @param factory The pdu factory to use to encode and decode pdu.
 * @return The object that will handle every steps of the receiving (mainly unmarshalling and security).
 */
public SnmpIncomingRequest getIncomingRequest(int model,
                                              SnmpPduFactory factory)
    throws SnmpUnknownMsgProcModelException;
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:10,代码来源:SnmpMsgProcessingSubSystem.java


示例4: getOutgoingRequest

import com.sun.jmx.snmp.SnmpUnknownMsgProcModelException; //导入依赖的package包/类
/**
 * This method is called when a call is to be sent to the network. The sub system routes the call to the dedicated model according to the model ID.
 * @param model The model ID.
 * @param factory The pdu factory to use to encode and decode pdu.
 * @return The object that will handle every steps of the sending (mainly marshalling and security).
 */
public SnmpOutgoingRequest getOutgoingRequest(int model,
                                              SnmpPduFactory factory) throws SnmpUnknownMsgProcModelException ;
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:9,代码来源:SnmpMsgProcessingSubSystem.java


示例5: getRequestPdu

import com.sun.jmx.snmp.SnmpUnknownMsgProcModelException; //导入依赖的package包/类
/**
 * This method is called to instantiate a pdu according to the passed pdu type and parameters. The sub system routes the call to the dedicated model according to the model ID.
 * @param model The model ID.
 * @param p The request parameters.
 * @param type The pdu type.
 * @return The pdu.
 */
public SnmpPdu getRequestPdu(int model, SnmpParams p, int type) throws SnmpUnknownMsgProcModelException, SnmpStatusException ;
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:9,代码来源:SnmpMsgProcessingSubSystem.java


示例6: getIncomingResponse

import com.sun.jmx.snmp.SnmpUnknownMsgProcModelException; //导入依赖的package包/类
/**
 * This method is called when a call is received from the network. The sub system routes the call to the dedicated model according to the model ID.
 * @param model The model ID.
 * @param factory The pdu factory to use to decode pdu.
 * @return The object that will handle every steps of the receiving (mainly marshalling and security).
 */
public SnmpIncomingResponse getIncomingResponse(int model,
                                                SnmpPduFactory factory) throws SnmpUnknownMsgProcModelException;
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:9,代码来源:SnmpMsgProcessingSubSystem.java


示例7: decode

import com.sun.jmx.snmp.SnmpUnknownMsgProcModelException; //导入依赖的package包/类
/**
 * This method returns a decoded scoped pdu. This method decodes only the <CODE>contextEngineID</CODE>, <CODE>contextName</CODE> and data. It is needed by the <CODE>SnmpSecurityModel</CODE> after decryption. It will be routed to the dedicated model according to the version value.
 * @param version The SNMP protocol version.
 * @param pdu The encoded pdu.
 * @return the partialy scoped pdu.
 */
public SnmpDecryptedPdu decode(int version,
                               byte[] pdu)
    throws SnmpStatusException, SnmpUnknownMsgProcModelException;
 
开发者ID:SunburstApps,项目名称:OpenJSharp,代码行数:10,代码来源:SnmpMsgProcessingSubSystem.java



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


鲜花

握手

雷人

路过

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

请发表评论

全部评论

专题导读
上一篇:
Java MultiVersionConsistencyControl类代码示例发布时间:2022-05-22
下一篇:
Java SatelliteVisualizationViewer类代码示例发布时间: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