Merge pull request #303 from ghillert/INT-2359-GH

This commit is contained in:
Mark Fisher
2012-01-05 16:19:19 -05:00
27 changed files with 124 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
/**
* Contains parser classes for the JDBC namespace support.
*/
package org.springframework.integration.jdbc.config;

View File

@@ -0,0 +1,5 @@
/**
* Root package of the Spring Integration JDBC module, which contains various
* JDBC and Stored Procedure/Function supporting components.
*/
package org.springframework.integration.jdbc;

View File

@@ -0,0 +1,4 @@
/**
* Provides Stored Procedure/Function supporting classes.
*/
package org.springframework.integration.jdbc.storedproc;

View File

@@ -0,0 +1,4 @@
/**
* Provides several {@link org.hamcrest.BaseMatcher} implementations.
*/
package org.springframework.integration.test.matcher;

View File

@@ -0,0 +1,5 @@
/**
* Provides several test support classes including for testing Spring Integration
* request-response message scenarios.
*/
package org.springframework.integration.test.support;

View File

@@ -0,0 +1,6 @@
/**
* Provides various test utilities, for example
* {@link org.springframework.integration.test.util.TestUtils} provides convenience
* helpers to easily retrieve private bean properties.
*/
package org.springframework.integration.test.util;

View File

@@ -0,0 +1,4 @@
/**
* Contains parser classes for the Twitter namespace support.
*/
package org.springframework.integration.twitter.config;

View File

@@ -0,0 +1,4 @@
/**
* Provides classes used across all Twitter components.
*/
package org.springframework.integration.twitter.core;

View File

@@ -0,0 +1,4 @@
/**
* Provides inbound Twitter components.
*/
package org.springframework.integration.twitter.inbound;

View File

@@ -0,0 +1,4 @@
/**
* Provides outbound Twitter components.
*/
package org.springframework.integration.twitter.outbound;

View File

@@ -0,0 +1,4 @@
/**
* Contains parser classes for the Web Services namespace support.
*/
package org.springframework.integration.ws.config;

View File

@@ -0,0 +1,5 @@
/**
* Provides several inbound and outbound Web Service components. Also contains
* support classes (e.g. Header Mapper)
*/
package org.springframework.integration.ws;

View File

@@ -0,0 +1,4 @@
/**
* Contains parser classes for the XML namespace support.
*/
package org.springframework.integration.xml.config;

View File

@@ -0,0 +1,4 @@
/**
* Root package of the XML Module.
*/
package org.springframework.integration.xml;

View File

@@ -0,0 +1,6 @@
/**
* Provides {@link org.springframework.integration.xml.result.ResultFactory} that
* will return {@link javax.xml.transform.Result}, possibly taking into account
* payload instance.
*/
package org.springframework.integration.xml.result;

View File

@@ -0,0 +1,4 @@
/**
* Provides XML message routers.
*/
package org.springframework.integration.xml.router;

View File

@@ -0,0 +1,5 @@
/**
* Provides XML-centric {@link org.springframework.integration.core.MessageSelector}
* implementations.
*/
package org.springframework.integration.xml.selector;

View File

@@ -0,0 +1,5 @@
/**
* Provides various {@link org.springframework.integration.xml.source.SourceFactory}
* implementations.
*/
package org.springframework.integration.xml.source;

View File

@@ -0,0 +1,5 @@
/**
* Provides implementations of
* {@link org.springframework.integration.splitter.AbstractMessageSplitter}.
*/
package org.springframework.integration.xml.splitter;

View File

@@ -0,0 +1,4 @@
/**
* Provides Transformer and Enricher implementations.
*/
package org.springframework.integration.xml.transformer;

View File

@@ -0,0 +1,4 @@
/**
* Provides XPath supporting classes.
*/
package org.springframework.integration.xml.xpath;

View File

@@ -0,0 +1,4 @@
/**
* Contains parser classes for the XMPP namespace support.
*/
package org.springframework.integration.xmpp.config;

View File

@@ -0,0 +1,4 @@
/**
* Provides classes shared across all XMPP components.
*/
package org.springframework.integration.xmpp.core;

View File

@@ -0,0 +1,6 @@
/**
* Provides XMPP inbound Endpoint implementations that extend
* {@link org.springframework.integration.xmpp.core.AbstractXmppConnectionAwareEndpoint}.
*/
package org.springframework.integration.xmpp.inbound;

View File

@@ -0,0 +1,6 @@
/**
* Provides XMPP outbound Messagehandler implementations.These components extend
* {@link org.springframework.integration.xmpp.core.AbstractXmppConnectionAwareMessageHandler}
*/
package org.springframework.integration.xmpp.outbound;

View File

@@ -0,0 +1,4 @@
/**
* Root package of the Spring Integration XMPP Module.
*/
package org.springframework.integration.xmpp;

View File

@@ -0,0 +1,6 @@
/**
* Provides XMPP specific support classes. Right now you will find a
* {@link org.springframework.integration.xmpp.support.XmppHeaderMapper} implementation
* in this package.
*/
package org.springframework.integration.xmpp.support;