Uses of Interface
org.snmp4j.mp.MessageProcessingModel
-
Packages that use MessageProcessingModel Package Description org.snmp4j Provides classes and interfaces for creating, sending, and receiving SNMP messages.org.snmp4j.mp Provides classes and interfaces for the SNMP message processing.org.snmp4j.util Contains table retrieval utilities and multi-threading support classes as well as miscellaneous utility classes. -
-
Uses of MessageProcessingModel in org.snmp4j
Fields in org.snmp4j with type parameters of type MessageProcessingModel Modifier and Type Field Description private java.util.List<MessageProcessingModel>
MessageDispatcherImpl. mpm
Methods in org.snmp4j that return MessageProcessingModel Modifier and Type Method Description MessageProcessingModel
MessageDispatcher. getMessageProcessingModel(int messageProcessingModel)
Gets theMessageProcessingModel
for the supplied message processing model ID.MessageProcessingModel
MessageDispatcherImpl. getMessageProcessingModel(int messageProcessingModel)
Gets theMessageProcessingModel
for the supplied message processing model ID.MessageProcessingModel
Snmp. getMessageProcessingModel(int messageProcessingModel)
Gets the message processing model for the supplied ID.Methods in org.snmp4j with parameters of type MessageProcessingModel Modifier and Type Method Description void
MessageDispatcher. addMessageProcessingModel(MessageProcessingModel model)
Adds aMessageProcessingModel
to the dispatcher.void
MessageDispatcherImpl. addMessageProcessingModel(MessageProcessingModel model)
Adds a message processing model to this message dispatcher.protected void
MessageDispatcherImpl. configureAuthoritativeEngineID(Target<?> target, MessageProcessingModel mp)
protected <A extends Address>
voidMessageDispatcherImpl. dispatchMessage(TransportMapping<? super A> sourceTransport, MessageProcessingModel mp, A incomingAddress, BERInputStream wholeMessage, TransportStateReference tmStateReference)
Actually decodes and dispatches an incoming SNMP message using the supplied message processing model.void
MessageDispatcher. removeMessageProcessingModel(MessageProcessingModel model)
Removes a previously addedMessageProcessingModel
from the dispatcher.void
MessageDispatcherImpl. removeMessageProcessingModel(MessageProcessingModel model)
Removes a message processing model from this message dispatcher. -
Uses of MessageProcessingModel in org.snmp4j.mp
Classes in org.snmp4j.mp that implement MessageProcessingModel Modifier and Type Class Description class
MPv1
TheMPv1
is the message processing model for SNMPv1.class
MPv2c
TheMPv2c
is the message processing model for SNMPv2c (community based SNMPv2).class
MPv3
TheMPv3
is the message processing model for SNMPv3. -
Uses of MessageProcessingModel in org.snmp4j.util
Methods in org.snmp4j.util that return MessageProcessingModel Modifier and Type Method Description MessageProcessingModel
MultiThreadedMessageDispatcher. getMessageProcessingModel(int messageProcessingModel)
Methods in org.snmp4j.util with parameters of type MessageProcessingModel Modifier and Type Method Description void
MultiThreadedMessageDispatcher. addMessageProcessingModel(MessageProcessingModel model)
PDU
DefaultPDUFactory. createPDU(MessageProcessingModel messageProcessingModel)
Creates aPDU
instance for the specifiedMessageProcessingModel
.static PDU
DefaultPDUFactory. createPDU(MessageProcessingModel messageProcessingModel, int pduType)
Creates aPDU
instance for the specifiedMessageProcessingModel
and PDU type.PDU
PDUFactory. createPDU(MessageProcessingModel messageProcessingModel)
Creates aPDU
instance that is compatible with the given SNMP version (message processing model).PDU
SnmpConfigurator.InnerPDUFactory. createPDU(MessageProcessingModel messageProcessingModel)
private static PDU
DefaultPDUFactory. createPduByMP(MessageProcessingModel messageProcessingModel)
void
MultiThreadedMessageDispatcher. removeMessageProcessingModel(MessageProcessingModel model)
-