Adapter Interface
All adapters use the de.softproject.integration.adapter.core.Adapter
interface and the default constructor (without parameters) to create the main class. Each adapter instance has a status
object in order to set a status after the adapter component's execution, and a unique identifier.
The following adapter interface methods are available:
| |
---|---|
public void cleanup() | Always cleans up after the execution of the |
public void init(Status arg0, long arg1) | Will be called after creating the adapter instance. The parameter |
public Object getConfigurationBean() | Returns an instance of the configuration bean containing setter methods for setting configuration parameters. Adapter instances can access configuration parameters via the configuration bean object. |