Package org.springframework.integration.adapter

Interface Summary
ArgumentListPreparer A strategy for preparing an argument list from a single source object.
PollableSource<T> Interface for any external data source that can be polled.
SourceAdapter Base interface for source adapters.
Target<T> Interface for any external target that may receive data from an outgoing channel adapter.
 

Class Summary
AbstractSourceAdapter<T> A base class providing common behavior for source adapters.
AbstractTargetAdapter<T> Base class providing common behavior for target adapters.
DefaultTargetAdapter<T> Target adapter implementation that delegates to a MessageMapper and then passes the resulting object to the provided Target.
MethodInvokingSource<T> A pollable source that invokes a no-argument method so that its return value may be sent to a channel.
MethodInvokingTarget<T> A messaging target that invokes the specified method on the provided object.
PollingSourceAdapter<T> A channel adapter that retrieves objects from a PollableSource, delegates to a MessageMapper to create messages from those objects, and then sends the resulting messages to the provided MessageChannel.