Spring Integration

Uses of Class
org.springframework.integration.context.IntegrationObjectSupport

Packages that use IntegrationObjectSupport
org.springframework.integration.aggregator   
org.springframework.integration.channel   
org.springframework.integration.endpoint   
org.springframework.integration.event   
org.springframework.integration.file   
org.springframework.integration.filter   
org.springframework.integration.gateway   
org.springframework.integration.handler   
org.springframework.integration.http   
org.springframework.integration.httpinvoker   
org.springframework.integration.ip   
org.springframework.integration.ip.tcp   
org.springframework.integration.ip.udp   
org.springframework.integration.jms   
org.springframework.integration.jmx   
org.springframework.integration.mail   
org.springframework.integration.rmi   
org.springframework.integration.router   
org.springframework.integration.splitter   
org.springframework.integration.transformer   
org.springframework.integration.ws   
org.springframework.integration.xml.router   
org.springframework.integration.xml.splitter   
org.springframework.integration.xmpp.messages   
org.springframework.integration.xmpp.presence   
 

Uses of IntegrationObjectSupport in org.springframework.integration.aggregator
 

Subclasses of IntegrationObjectSupport in org.springframework.integration.aggregator
 class CorrelatingMessageBarrier
          This Endpoint serves as a barrier for messages that should not be processed yet.
 class CorrelatingMessageHandler
          Message handler that holds a buffer of correlated messages in a MessageStore.
 

Uses of IntegrationObjectSupport in org.springframework.integration.channel
 

Subclasses of IntegrationObjectSupport in org.springframework.integration.channel
 class AbstractMessageChannel
          Base class for MessageChannel implementations providing common properties such as the channel name.
 class AbstractPollableChannel
          Base class for all pollable channels.
 class AbstractSubscribableChannel
          Base implementation of MessageChannel that invokes the subscribed handler(s) by delegating to a MessageDispatcher.
 class DirectChannel
          A channel that invokes a single subscriber for each sent Message.
 class ExecutorChannel
          An implementation of MessageChannel that delegates to an instance of UnicastingDispatcher which in turn delegates all dispatching invocations to an Executor.
 class PriorityChannel
          A message channel that prioritizes messages based on a Comparator.
 class PublishSubscribeChannel
          A channel that sends Messages to each of its subscribers.
 class QueueChannel
          Simple implementation of a message channel.
 class RendezvousChannel
          A zero-capacity version of QueueChannel that delegates to a SynchronousQueue internally.
 

Uses of IntegrationObjectSupport in org.springframework.integration.endpoint
 

Subclasses of IntegrationObjectSupport in org.springframework.integration.endpoint
 class AbstractEndpoint
          The base class for Message Endpoint implementations.
 class AbstractPollingEndpoint
           
 class EventDrivenConsumer
          Message Endpoint that connects any MessageHandler implementation to a SubscribableChannel.
 class MessageProducerSupport
          A support class for producer endpoints that provides a setter for the output channel and a convenience method for sending Messages.
 class PollingConsumer
          Message Endpoint that connects any MessageHandler implementation to a PollableChannel.
 class ScheduledMessageProducer
           
 class SourcePollingChannelAdapter
          A Channel Adapter implementation for connecting a MessageSource to a MessageChannel.
 

Uses of IntegrationObjectSupport in org.springframework.integration.event
 

Subclasses of IntegrationObjectSupport in org.springframework.integration.event
 class ApplicationEventInboundChannelAdapter
          An inbound Channel Adapter that passes Spring ApplicationEvents within messages.
 class ApplicationEventPublishingMessageHandler<T>
          A MessageHandler that publishes each Message it receives as a MessagingEvent.
 

Uses of IntegrationObjectSupport in org.springframework.integration.file
 

Subclasses of IntegrationObjectSupport in org.springframework.integration.file
 class FileWritingMessageHandler
          A MessageHandler implementation that writes the Message payload to a file.
 

Uses of IntegrationObjectSupport in org.springframework.integration.filter
 

Subclasses of IntegrationObjectSupport in org.springframework.integration.filter
 class MessageFilter
          Message Handler that delegates to a MessageSelector.
 

Uses of IntegrationObjectSupport in org.springframework.integration.gateway
 

Subclasses of IntegrationObjectSupport in org.springframework.integration.gateway
 class AbstractMessagingGateway
          A convenient base class for connecting application code to MessageChannels for sending, receiving, or request-reply operations.
 class AbstractRemotingOutboundGateway
          A base class for outbound URL-based Messaging Gateways.
 class GatewayProxyFactoryBean
          Generates a proxy for the provided service interface to enable interaction with messaging components without application code being aware of them allowing for POJO-style interaction.
 class RemotingInboundGatewaySupport
          Support class for inbound Messaging Gateways.
 class SimpleMessagingGateway
          An implementation of AbstractMessagingGateway that delegates to an InboundMessageMapper and OutboundMessageMapper.
 

Uses of IntegrationObjectSupport in org.springframework.integration.handler
 

Subclasses of IntegrationObjectSupport in org.springframework.integration.handler
 class AbstractMessageHandler
          Base class for MessageHandler implementations that provides basic validation and error handling capabilities.
 class AbstractReplyProducingMessageHandler
          Base class for MessageHandlers that are capable of producing replies.
 class BridgeHandler
          A simple MessageHandler implementation that passes the request Message directly to the output channel without modifying it.
 class DelayHandler
          A MessageHandler that is capable of delaying the continuation of a Message flow based on the presence of a delay header on an inbound Message or a default delay value configured on this handler.
 class LoggingHandler
          MessageHandler implementation that simply logs the Message or its payload depending on the value of the 'shouldLogFullMessage' property.
 class MessageHandlerChain
          A composite MessageHandler implementation that invokes a chain of MessageHandler instances in order.
 class ServiceActivatingHandler
           
 

Uses of IntegrationObjectSupport in org.springframework.integration.http
 

Subclasses of IntegrationObjectSupport in org.springframework.integration.http
 class HttpRequestExecutingMessageHandler
          A MessageHandler implementation that executes HTTP requests by delegating to a RestTemplate instance.
 class HttpRequestHandlingController
          Inbound HTTP endpoint that implements Spring's Controller interface to be used with a DispatcherServlet front controller.
 class HttpRequestHandlingMessagingGateway
          Inbound Messaging Gateway that handles HTTP Requests.
 

Uses of IntegrationObjectSupport in org.springframework.integration.httpinvoker
 

Subclasses of IntegrationObjectSupport in org.springframework.integration.httpinvoker
 class HttpInvokerInboundGateway
          Deprecated. as of 2.0.x. We recommend using the REST-based HTTP adapters instead.
 class HttpInvokerOutboundGateway
          Deprecated. as of 2.0.x. We recommend using the REST-based HTTP adapters instead.
 

Uses of IntegrationObjectSupport in org.springframework.integration.ip
 

Subclasses of IntegrationObjectSupport in org.springframework.integration.ip
 class AbstractInternetProtocolReceivingChannelAdapter
          Base class for inbound TCP/UDP Channel Adapters.
 

Uses of IntegrationObjectSupport in org.springframework.integration.ip.tcp
 

Subclasses of IntegrationObjectSupport in org.springframework.integration.ip.tcp
 class AbstractTcpReceivingChannelAdapter
          Abstract class for tcp/ip incoming channel adapters.
 class SimpleTcpNetInboundGateway
          Simple implementation of a TCP/IP inbound gateway; uses Socket and socket reader thread hangs on receive for response; therefore no multiplexing of incoming messages is supported.
 class SimpleTcpNetOutboundGateway
          Simple TCP outbound gateway; delegates write to a TcpNetSendingMessageHandler then blocks on read of same socket.
 class TcpNetReceivingChannelAdapter
          Tcp Receiving Channel adapter that uses a Socket.
 class TcpNioReceivingChannelAdapter
          Tcp Receiving Channel adapter that uses a SocketChannel.
 class TcpReceivingChannelAdapter
          Tcp inbound channel adapter using a TcpConnection to receive data - if the connection factory is a server factory, this Listener owns the connections.
 

Uses of IntegrationObjectSupport in org.springframework.integration.ip.udp
 

Subclasses of IntegrationObjectSupport in org.springframework.integration.ip.udp
 class MulticastReceivingChannelAdapter
          Channel adapter that joins a multicast group and receives incoming packets and sends them to an output channel.
 class UnicastReceivingChannelAdapter
          A channel adapter to receive incoming UDP packets.
 

Uses of IntegrationObjectSupport in org.springframework.integration.jms
 

Subclasses of IntegrationObjectSupport in org.springframework.integration.jms
 class AbstractJmsTemplateBasedAdapter
          Base class for adapters that delegate to a JmsTemplate.
 class ChannelPublishingJmsMessageListener
          JMS MessageListener that converts a JMS Message into a Spring Integration Message and sends that Message to a channel.
 class JmsDestinationPollingSource
          A source for receiving JMS Messages with a polling listener.
 class JmsMessageDrivenEndpoint
          A message-driven endpoint that receive JMS messages, converts them into Spring Integration Messages, and then sends the result to a channel.
 class JmsOutboundGateway
          An outbound Messaging Gateway for request/reply JMS.
 class JmsSendingMessageHandler
          A MessageConsumer that sends the converted Message payload within a JMS Message.
 

Uses of IntegrationObjectSupport in org.springframework.integration.jmx
 

Subclasses of IntegrationObjectSupport in org.springframework.integration.jmx
 class NotificationListeningMessageProducer
          A JMX NotificationListener implementation that will send Messages containing the JMX Notification instances as their payloads.
 class NotificationPublishingMessageHandler
           
 class OperationInvokingMessageHandler
          A MessageHandler implementation for invoking JMX operations based on the Message sent to its AbstractMessageHandler.handleMessage(Message) method.
 

Uses of IntegrationObjectSupport in org.springframework.integration.mail
 

Subclasses of IntegrationObjectSupport in org.springframework.integration.mail
 class ImapIdleChannelAdapter
          An event-driven Channel Adapter that receives mail messages from a mail server that supports the IMAP "idle" command (see RFC 2177).
 

Uses of IntegrationObjectSupport in org.springframework.integration.rmi
 

Subclasses of IntegrationObjectSupport in org.springframework.integration.rmi
 class RmiInboundGateway
          An inbound Messaging Gateway for RMI-based remoting.
 class RmiOutboundGateway
          An outbound Messaging Gateway for RMI-based remoting.
 

Uses of IntegrationObjectSupport in org.springframework.integration.router
 

Subclasses of IntegrationObjectSupport in org.springframework.integration.router
 class AbstractChannelNameResolvingMessageRouter
          A base class for router implementations that return only the channel name(s) rather than MessageChannel instances.
 class AbstractMessageRouter
          Base class for Message Routers.
 class AbstractSingleChannelNameRouter
          Extends AbstractChannelNameResolvingMessageRouter to support router implementations that always return a single channel name (or null).
 class AbstractSingleChannelRouter
          Extends AbstractMessageRouter to support router implementations that always return a single MessageChannel instance (or null).
 class ErrorMessageExceptionTypeRouter
          A Message Router that resolves the target MessageChannel for messages whose payload is an Exception.
 class ExpressionEvaluatingRouter
          A Message Router implementation that evaluates the specified SpEL expression.
 class HeaderValueRouter
          A Message Router that resolves the MessageChannel from a header value.
 class MethodInvokingRouter
          A Message Router that invokes the specified method on the given object.
 class PayloadTypeRouter
          A Message Router that resolves the MessageChannel based on the Message's payload type.
 class RecipientListRouter
           <recipient-list-router id="simpleRouter" input-channel="routingChannelA"> <recipient channel="channel1"/> <recipient channel="channel2"/> </recipient-list-router>

A Message Router that sends Messages to a list of recipient channels.

 

Uses of IntegrationObjectSupport in org.springframework.integration.splitter
 

Subclasses of IntegrationObjectSupport in org.springframework.integration.splitter
 class AbstractMessageSplitter
          Base class for Message-splitting handlers.
 class DefaultMessageSplitter
          The default Message Splitter implementation.
 class ExpressionEvaluatingSplitter
          A Message Splitter implementation that evaluates the specified SpEL expression.
 class MethodInvokingSplitter
          A Message Splitter implementation that invokes the specified method on the given object.
 

Uses of IntegrationObjectSupport in org.springframework.integration.transformer
 

Subclasses of IntegrationObjectSupport in org.springframework.integration.transformer
 class MessageTransformingHandler
          A reply-producing MessageHandler that delegates to a Transformer instance to modify the received Message and sends the result to its output channel.
 

Uses of IntegrationObjectSupport in org.springframework.integration.ws
 

Subclasses of IntegrationObjectSupport in org.springframework.integration.ws
 class AbstractWebServiceOutboundGateway
          Base class for outbound Web Service-invoking Messaging Gateways.
 class MarshallingWebServiceOutboundGateway
          An outbound Messaging Gateway for invoking Web Services that also supports marshalling and unmarshalling of the request and response messages.
 class SimpleWebServiceInboundGateway
           
 class SimpleWebServiceOutboundGateway
          An outbound Messaging Gateway for invoking a Web Service.
 

Uses of IntegrationObjectSupport in org.springframework.integration.xml.router
 

Subclasses of IntegrationObjectSupport in org.springframework.integration.xml.router
 class AbstractXPathRouter
          Abstract base class for Message Routers that use XPathExpression evaluation to determine channel names.
 class XmlPayloadValidatingRouter
           
 class XPathMultiChannelRouter
          A router that evaluates the XPath expression using XPathExpression.evaluateAsNodeList(Node) which returns zero or more nodes in conjunction with an instance of NodeMapper to produce zero or more channel names.
 class XPathSingleChannelRouter
          Router that evaluates the payload using XPathExpression.evaluateAsString(Node) to extract a channel name.
 

Uses of IntegrationObjectSupport in org.springframework.integration.xml.splitter
 

Subclasses of IntegrationObjectSupport in org.springframework.integration.xml.splitter
 class XPathMessageSplitter
          Message Splitter that uses an XPathExpression to split a Document or String payload into a NodeList.
 

Uses of IntegrationObjectSupport in org.springframework.integration.xmpp.messages
 

Subclasses of IntegrationObjectSupport in org.springframework.integration.xmpp.messages
 class XmppMessageDrivenEndpoint
          This component logs in as a user and forwards any messages to that user on to downstream components.
 

Uses of IntegrationObjectSupport in org.springframework.integration.xmpp.presence
 

Subclasses of IntegrationObjectSupport in org.springframework.integration.xmpp.presence
 class XmppRosterEventMessageDrivenEndpoint
          Describes an endpoint that is able to login as usual with a XmppConnectionFactory and then emit Messages when a particular event happens to the logged in users Roster.
 


Spring Integration

Copyright © 2010. All Rights Reserved.