java.lang.Object
org.snmp4j.transport.TransportMappings
The
TransportMappings factory can be used to create a transport
mapping for an address class.- Since:
- 1.1
- Version:
- 2.4.1
- Author:
- Frank Fock
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescription<A extends Address>
TransportMapping<A> createTransportMapping(A transportAddress) Returns aTransportMappinginstance that is initialized with the supplied transport address.static TransportMappingsReturns theTransportMappingssingleton.<A extends Address>
voidregisterTransportMapping(Class<? extends TransportMapping<A>> transportMappingClass, Class<A> addressClass) Register a transport mapping to be recognised by thisTransportMappingssingleton.protected void<A extends Address>
Class<? extends TransportMapping<?>> unregisterTransportMapping(Class<A> addressClass) Unregister an address class from the corresponding transport mapping.
-
Field Details
-
TRANSPORT_MAPPINGS
- See Also:
-
-
Constructor Details
-
TransportMappings
protected TransportMappings()
-
-
Method Details
-
getInstance
Returns theTransportMappingssingleton.- Returns:
- the
TransportMappingsinstance.
-
createTransportMapping
Returns aTransportMappinginstance that is initialized with the supplied transport address. If no such mapping exists,nullis returned. To register third party transport mappings, please set the system propertyTRANSPORT_MAPPINGSto a transport mappings registration file, before calling this method for the first time.- Type Parameters:
A- anAddressclass that is the super class for the addresses supported by this transport mapping.- Parameters:
transportAddress- anAddressinstance that the transport mapping to lookup has to support.- Returns:
- a
TransportMappingthat supports the specifiedtransportAddressornullif such a mapping cannot be found.
-
registerTransportMappings
protected void registerTransportMappings() -
registerTransportMapping
public <A extends Address> void registerTransportMapping(Class<? extends TransportMapping<A>> transportMappingClass, Class<A> addressClass) Register a transport mapping to be recognised by thisTransportMappingssingleton. If this method has not been called yet, theregisterTransportMappings()will be called to register default transport mappings first.- Parameters:
transportMappingClass- a Class extendingTransportMapping.addressClass- the primary address Class extendingAddressthat can be used with that transport mapping.- Since:
- 3.7.1
-
unregisterTransportMapping
public <A extends Address> Class<? extends TransportMapping<?>> unregisterTransportMapping(Class<A> addressClass) Unregister an address class from the corresponding transport mapping.- Type Parameters:
A- the address class- Parameters:
addressClass- the primary address Class extendingAddressthat the transport mapping to be removed was registered with.- Returns:
- the removed transport mapping registration or
null. - Since:
- 3.7.1
-