public abstract class BaseDriver
extends java.lang.Object
drivers.xml
It acts as a provider for user defined BaseChannel
and BaseDestination
instances.Modifier and Type | Method and Description |
---|---|
abstract BaseChannel |
getChannel()
Gets user defined instance of
BaseChannel
which provides the implementations for the Channel's functionality
The framework calls this method once during startup
The user defined BaseChannel should provide an empty argument constructor |
abstract BaseDestination |
getDestination()
Gets user defined instance of
BaseDestination which provides implementations for the Destination's
functionality
The framework calls this method once during startup
The user defined BaseChannel should provide an empty argument constructor |
public abstract BaseChannel getChannel()
BaseChannel
which provides the implementations for the Channel's functionality
The framework calls this method once during startup
The user defined BaseChannel should provide an empty argument constructorBaseChannel
public abstract BaseDestination getDestination()
BaseDestination
which provides implementations for the Destination's
functionality
The framework calls this method once during startup
The user defined BaseChannel should provide an empty argument constructorBaseDestination