RouteConfiguratorUtility

public class RouteConfiguratorUtility<ConnectorType extends Connector>

A utility class that can be used via composition to implement some of the methods required by the RouteConfigurator interface.

Author

jwienke

Parameters

<ConnectorType> – type of connectors

Constructors

RouteConfiguratorUtility

public RouteConfiguratorUtility(Scope scope)

Constructor.

Parameters

scope – the managed route operates on this scope

Methods

activate

public void activate()

Activate the managed connectors.

Throws

RSBException – error activating

addConnector

public void addConnector(ConnectorType connector)

Adds a connector to use in this route.

Parameters

connector – the connector to add

deactivate

public void deactivate()

Deactivate the managed connectors.

Throws

getConnectors

public List<ConnectorType> getConnectors()

Returns the connectors used on the managed route.

Returns

list of connectors

getTransportUris

public Set<URI> getTransportUris()

Utility method to implement RouteConfigurator.getTransportUris(). Iterates all transports and returns their URIs. Might only be possible, depending on the transports, if activated before.

Throws

IllegalStateException – not activated

Returns

set of transport URIs, not null

isActive

public boolean isActive()

Tells whether already activated.

Returns

true if activated, else false

removeConnector

public boolean removeConnector(ConnectorType connector)

Removes a connector from the route if it existed.

Parameters

connector – the connector to remove

Returns

true if the connector existed