From 19c705fcbcf95530756278cf9601002c78233572 Mon Sep 17 00:00:00 2001 From: Iwein Fuld Date: Mon, 20 Sep 2010 22:15:19 +0200 Subject: [PATCH] QUALITY removed imports in favor of fully qualified classnames --- .../springframework/integration/core/MessageHandler.java | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/spring-integration-core/src/main/java/org/springframework/integration/core/MessageHandler.java b/spring-integration-core/src/main/java/org/springframework/integration/core/MessageHandler.java index 432f9cd24c..b95deb2b5b 100644 --- a/spring-integration-core/src/main/java/org/springframework/integration/core/MessageHandler.java +++ b/spring-integration-core/src/main/java/org/springframework/integration/core/MessageHandler.java @@ -17,9 +17,6 @@ package org.springframework.integration.core; import org.springframework.integration.Message; -import org.springframework.integration.MessageDeliveryException; -import org.springframework.integration.MessageHandlingException; -import org.springframework.integration.MessageRejectedException; import org.springframework.integration.MessagingException; /** @@ -43,9 +40,9 @@ public interface MessageHandler { * MessageDeliveryException. * * @param message the message to be handled - * @throws MessageRejectedException if the handler doesn't accept the message - * @throws MessageHandlingException when something fails during the handling - * @throws MessageDeliveryException when this handler failed to deliver the + * @throws org.springframework.integration.MessageRejectedException if the handler doesn't accept the message + * @throws org.springframework.integration.MessageHandlingException when something fails during the handling + * @throws org.springframework.integration.MessageDeliveryException when this handler failed to deliver the * reply related to the handling of the message */ void handleMessage(Message message) throws MessagingException;