Interface | Description |
---|---|
Connector |
Base interface of all connectors.
|
ConnectorCallback |
Interface that connectors can use to call back to the host application.
|
ConnectorFactory |
Base interface for factory objects that can create connectors for a particular provider.
|
ConnectorLogger |
An interface available via the ConnectorServices object which can be used by connectors to
obtain a java.util.Logger that will log to the host applications logging environment.
|
ConnectorServices |
This class provides access to the host application that connectors can optionally
use to reference services within the host, in particular logging and security.
|
InputConnector |
The interface for connectors intended to listen for incoming events or data.
|
OutputConnector |
Base interface for all output-only connectors.
|
OutputInteraction |
Base interface for objects that send an output message to a remote system but doesn't expect a response.
|
PollingInputConnector |
This interface extends InputConnector to trigger calls to processInboundData() in response to
a call to poll the input source.
|
RequestConnector |
Base interface for all request/response connectors.
|
RequestInteraction |
Base interface for objects that send a request message to a remote system expecting a response message in
return.
|
SecurityDirector |
Interface to allow connectors access to the host application's security checking mechanisms.
|
Class | Description |
---|---|
AbstractConnectorFactory |
An abstract class for connector factories.
|
AbstractInputConnector |
Provides an empty InputConnector implementation for extenders to fill in with provider-specific code.
|
AbstractInputConnectorFilter | |
AbstractOutputConnector |
Provides an empty OutputConnector implementation for extenders to fill in with provider-specific code.
|
AbstractOutputInteraction |
Provides an empty OutputInteraction implementation for extenders to fill in with provider-specific code.
|
AbstractPollingInputConnector |
Provides an empty PollingInputConnector implementation for extenders to fill in with provider-specific code.
|
AbstractRequestConnector |
Provides an empty RequestConnector implementation for extenders to fill in with provider-specific code.
|
AbstractRequestInteraction |
Provides an empty RequestInteraction implementation for extenders to fill in with provider-specific code.
|
Exception | Description |
---|---|
ConnectorException |
An Exception class to help encapsulate and identify exceptions that occur
within connectors
|