Moved the MessageMapper strategy interface from the 'gateway' package to the 'message' package.

This commit is contained in:
Mark Fisher
2008-09-27 15:22:28 +00:00
parent 9773908155
commit 1cfe32cd21
6 changed files with 4 additions and 5 deletions

View File

@@ -18,6 +18,7 @@ package org.springframework.integration.gateway;
import org.springframework.integration.message.Message;
import org.springframework.integration.message.MessageBuilder;
import org.springframework.integration.message.MessageMapper;
/**
* A default implementation of the {@link MessageMapper} strategy interface.

View File

@@ -17,6 +17,7 @@
package org.springframework.integration.gateway;
import org.springframework.integration.message.Message;
import org.springframework.integration.message.MessageMapper;
import org.springframework.util.Assert;
/**

View File

@@ -14,9 +14,8 @@
* limitations under the License.
*/
package org.springframework.integration.gateway;
package org.springframework.integration.message;
import org.springframework.integration.message.Message;
/**
* Strategy interface for mapping between an Object and a {@link Message}.

View File

@@ -26,7 +26,6 @@ import org.apache.commons.logging.LogFactory;
import org.springframework.beans.factory.InitializingBean;
import org.springframework.integration.ConfigurationException;
import org.springframework.integration.gateway.MessageMapper;
import org.springframework.integration.util.DefaultMethodInvoker;
import org.springframework.integration.util.MethodInvoker;
import org.springframework.integration.util.NameResolvingMethodInvoker;

View File

@@ -25,7 +25,6 @@ import org.springframework.core.LocalVariableTableParameterNameDiscoverer;
import org.springframework.core.MethodParameter;
import org.springframework.core.ParameterNameDiscoverer;
import org.springframework.integration.annotation.Header;
import org.springframework.integration.gateway.MessageMapper;
import org.springframework.util.Assert;
import org.springframework.util.ObjectUtils;
import org.springframework.util.StringUtils;

View File

@@ -16,8 +16,8 @@
package org.springframework.integration.gateway.config;
import org.springframework.integration.gateway.MessageMapper;
import org.springframework.integration.message.Message;
import org.springframework.integration.message.MessageMapper;
import org.springframework.integration.message.StringMessage;
/**