Uses of Class
org.snmp4j.mp.CounterSupport
Packages that use CounterSupport
Package
Description
Provides classes and interfaces for creating, sending, and receiving SNMP
messages.
Provides classes and interfaces for the SNMP message processing.
Provides classes and interfaces for authentication and privacy of SNMP(v3)
messages.
Provides transport protocol mappings for SNMP.
-
Uses of CounterSupport in org.snmp4j
Fields in org.snmp4j declared as CounterSupportMethods in org.snmp4j that return CounterSupportModifier and TypeMethodDescriptionSnmp.getCounterSupport()Gets the counter support for Snmp related counters.Methods in org.snmp4j with parameters of type CounterSupportModifier and TypeMethodDescriptionvoidSnmp.setCounterSupport(CounterSupport counterSupport) Sets the counter support instance to handle counter events on behalf of this Snmp instance. -
Uses of CounterSupport in org.snmp4j.fluent
Fields in org.snmp4j.fluent declared as CounterSupportMethods in org.snmp4j.fluent with parameters of type CounterSupportModifier and TypeMethodDescriptionSnmpBuilder.counterSupport(CounterSupport counterSupport) Sets theCounterSupportwithSnmp.setCounterSupport(CounterSupport)when building theSnmpinstance usingSnmpBuilder.build(). -
Uses of CounterSupport in org.snmp4j.mp
Fields in org.snmp4j.mp declared as CounterSupportModifier and TypeFieldDescriptionprivate CounterSupportMPv3.counterSupportprotected static CounterSupportCounterSupport.instanceMethods in org.snmp4j.mp that return CounterSupportModifier and TypeMethodDescriptionMPv3.getCounterSupport()Gets the counter support instance that can be used to register for counter incrementation events.static CounterSupportCounterSupport.getInstance()Gets the counter support singleton.Methods in org.snmp4j.mp with parameters of type CounterSupportModifier and TypeMethodDescriptionvoidMPv3.setCounterSupport(CounterSupport counterSupport) Sets the counter support instance.Constructors in org.snmp4j.mp with parameters of type CounterSupportModifierConstructorDescriptionMPv3(byte[] localEngineID, PDUFactory incomingPDUFactory, SecurityProtocols secProtocols, SecurityModels secModels, CounterSupport counterSupport) Creates a fully qualified MPv3 instance with custom security protocols and models as well as a custom counter support. -
Uses of CounterSupport in org.snmp4j.security
Fields in org.snmp4j.security declared as CounterSupportMethods in org.snmp4j.security that return CounterSupportModifier and TypeMethodDescriptionSNMPv3SecurityModel.getCounterSupport()Gets the counter support instance that can be used to register for counter incrementation events.Methods in org.snmp4j.security with parameters of type CounterSupportModifier and TypeMethodDescriptionvoidSNMPv3SecurityModel.setCounterSupport(CounterSupport counterSupport) Sets the counter support instance.Constructors in org.snmp4j.security with parameters of type CounterSupportModifierConstructorDescriptionTSM(OctetString localEngineID, boolean usePrefix, CounterSupport counterSupport) Creates a Transport Security Model as defined by RFC 5591.USM(SecurityProtocols securityProtocols, OctetString localEngineID, int engineBoots, CounterSupport counterSupport) Creates a USM with the support for the supplied security protocols. -
Uses of CounterSupport in org.snmp4j.transport
Fields in org.snmp4j.transport declared as CounterSupportModifier and TypeFieldDescriptionprivate CounterSupportDTLSTM.counterSupportprivate CounterSupportTLSTM.counterSupportMethods in org.snmp4j.transport that return CounterSupportConstructors in org.snmp4j.transport with parameters of type CounterSupportModifierConstructorDescriptionDTLSTM(TlsTmSecurityCallback<X509Certificate> securityCallback, DtlsAddress serverAddress, CounterSupport counterSupport) Creates a TLS transport mapping that binds to the given address (interface) on the local host and runs as a server.DTLSTM(TlsTmSecurityCallback<X509Certificate> securityCallback, DtlsAddress serverAddress, CounterSupport counterSupport, boolean serverEnabled) Creates a TLS transport mapping that binds to the given address (interface) on the local host.TLSTM(TlsTmSecurityCallback<X509Certificate> securityCallback, TlsAddress serverAddress, CounterSupport counterSupport) Creates a TLS transport mapping that binds to the given address (interface) on the local host.TLSTM(TlsTmSecurityCallback<X509Certificate> securityCallback, TlsAddress serverAddress, CounterSupport counterSupport, boolean serverEnabled) Creates a TLS transport mapping that binds to the given address (interface) on the local host. -
Uses of CounterSupport in org.snmp4j.transport.tls
Fields in org.snmp4j.transport.tls declared as CounterSupportModifier and TypeFieldDescriptionprivate final CounterSupportTLSTMExtendedTrustManager.tlstmCountersprivate CounterSupportTlsTrustManager.tlstmCountersDeprecated.private final CounterSupportTLSTMExtendedTrustManagerFactory.tlstmCounterSupportMethods in org.snmp4j.transport.tls with parameters of type CounterSupportModifier and TypeMethodDescriptionstatic booleanTLSTMUtil.isMatchingFingerprint(X509Certificate[] x509Certificates, OctetString fingerprint, boolean useClientMode, CounterSupport tlstmCounters, LogAdapter logger, Object eventSource) Checks if any of the certificates in the provided array matches the given fingerprint.Constructors in org.snmp4j.transport.tls with parameters of type CounterSupportModifierConstructorDescriptionTLSTMExtendedTrustManager(CounterSupport tlstmCounters, TlsTmSecurityCallback<X509Certificate> securityCallback, X509TrustManager trustManager, boolean useClientMode, TransportStateReference tmStateReference) TLSTMExtendedTrustManagerFactory(CounterSupport tlstmCounterSupport, TlsTmSecurityCallback<X509Certificate> securityCallback) TlsTrustManager(X509TrustManager trustManager, boolean useClientMode, TransportStateReference tmStateReference, CounterSupport tlstmCounters, TlsTmSecurityCallback<X509Certificate> securityCallback) Deprecated.Creates a newTlsTrustManager.