From 630d1cf009e7d1c220ee481186efdeaf964dc47d Mon Sep 17 00:00:00 2001 From: Laurent BILLON Date: Fri, 25 Oct 2013 11:23:27 +0200 Subject: [PATCH] Fix typo in Basic Mail Sample https://jira.springsource.org/browse/INTSAMPLES-118 --- .../mail/imapidle/GmailInboundImapIdleAdapterTestApp.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basic/mail/src/main/java/org/springframework/integration/samples/mail/imapidle/GmailInboundImapIdleAdapterTestApp.java b/basic/mail/src/main/java/org/springframework/integration/samples/mail/imapidle/GmailInboundImapIdleAdapterTestApp.java index e2e5956c..9a02b3e8 100644 --- a/basic/mail/src/main/java/org/springframework/integration/samples/mail/imapidle/GmailInboundImapIdleAdapterTestApp.java +++ b/basic/mail/src/main/java/org/springframework/integration/samples/mail/imapidle/GmailInboundImapIdleAdapterTestApp.java @@ -33,7 +33,7 @@ public class GmailInboundImapIdleAdapterTestApp { public static void main (String[] args) throws Exception { ApplicationContext ac = new ClassPathXmlApplicationContext("/META-INF/spring/integration/gmail-imap-idle-config.xml"); - DirectChannel inputChannel = ac.getBean("recieveChannel", DirectChannel.class); + DirectChannel inputChannel = ac.getBean("receiveChannel", DirectChannel.class); inputChannel.subscribe(new MessageHandler() { public void handleMessage(Message message) throws MessagingException { logger.info("Message: " + message);