Adapter Interface
How the adapter interface, the constructor and the methods are used
All adapters use the interface de.softproject.integration.adapter.core.Adapter 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.
Adapter Interface Methods
| |
|---|---|
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. |