From d11741fbab4e52b2db828f41079edd51bd1ea555 Mon Sep 17 00:00:00 2001 From: Mark Fisher Date: Wed, 28 Jul 2010 15:18:39 +0000 Subject: [PATCH] INT-1129 moved MethodInvokingMessageSource from 'message' to 'endpoint' package --- .../{message => endpoint}/MethodInvokingMessageSource.java | 2 +- .../integration/message/MethodInvokingSourceTests.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename spring-integration-core/src/main/java/org/springframework/integration/{message => endpoint}/MethodInvokingMessageSource.java (98%) diff --git a/spring-integration-core/src/main/java/org/springframework/integration/message/MethodInvokingMessageSource.java b/spring-integration-core/src/main/java/org/springframework/integration/endpoint/MethodInvokingMessageSource.java similarity index 98% rename from spring-integration-core/src/main/java/org/springframework/integration/message/MethodInvokingMessageSource.java rename to spring-integration-core/src/main/java/org/springframework/integration/endpoint/MethodInvokingMessageSource.java index 96f267081f..7c487b2ec4 100644 --- a/spring-integration-core/src/main/java/org/springframework/integration/message/MethodInvokingMessageSource.java +++ b/spring-integration-core/src/main/java/org/springframework/integration/endpoint/MethodInvokingMessageSource.java @@ -14,7 +14,7 @@ * limitations under the License. */ -package org.springframework.integration.message; +package org.springframework.integration.endpoint; import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Method; diff --git a/spring-integration-core/src/test/java/org/springframework/integration/message/MethodInvokingSourceTests.java b/spring-integration-core/src/test/java/org/springframework/integration/message/MethodInvokingSourceTests.java index ae2ab88e3f..ce3ab429f5 100644 --- a/spring-integration-core/src/test/java/org/springframework/integration/message/MethodInvokingSourceTests.java +++ b/spring-integration-core/src/test/java/org/springframework/integration/message/MethodInvokingSourceTests.java @@ -23,7 +23,7 @@ import org.junit.Test; import org.springframework.integration.Message; import org.springframework.integration.MessagingException; -import org.springframework.integration.message.MethodInvokingMessageSource; +import org.springframework.integration.endpoint.MethodInvokingMessageSource; /** * @author Mark Fisher