TransportRegistry¶
-
public class
TransportRegistry
¶ A registry of all know transports.
- Author
jwienke
Methods¶
getDefaultInstance¶
-
public static TransportRegistry
getDefaultInstance
()¶ Returns a default instance of this class with the globally available transports.
- Returns
default instance
getFactory¶
-
public TransportFactory
getFactory
(String name)¶ Returns the transport factory for a transport with the specified name.
- Parameters
name – name of the transport
- Throws
NoSuchElementException – there is no transport with the given name
- Returns
the transport factory instance
hasTransport¶
registerTransport¶
-
public void
registerTransport
(String name, TransportFactory factory)¶ Registers a transport factory for a transport with the given name.
- Parameters
name – name of the transport
factory – factory instance
- Throws
IllegalArgumentException – There is already a transport with the given name or the name is
null
or empty.