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


Java SnmpUnknownMsgProcModelException类代码示例

本文整理汇总了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;未经允许,请勿转载。