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

public boolean hasTransport(String name)

Indicates whether a transport with the given name is available.

Parameters

name – the name of the transport

Returns

true if a transport with the name exists, else false

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.

transportNames

public Set<String> transportNames()

Returns the names of all known transports.

Returns

set of names