org.springframework.integration.annotation.Gateway Java Examples

The following examples show how to use org.springframework.integration.annotation.Gateway. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: EmailGateway.java    From website with GNU Affero General Public License v3.0 4 votes vote down vote up
@Gateway(requestChannel="newUserChannel")
public void newUser(final User user);
 
Example #2
Source File: RouterExample.java    From tutorials with MIT License 4 votes vote down vote up
@Gateway(requestChannel = "classify.input")
void classify(Collection<Integer> numbers);
 
Example #3
Source File: FilterExample.java    From tutorials with MIT License 4 votes vote down vote up
@Gateway(requestChannel = "classify.input")
void classify(Collection<Integer> numbers);
 
Example #4
Source File: PublishSubscibeChannelExample.java    From tutorials with MIT License 4 votes vote down vote up
@Gateway(requestChannel = "classify.input")
void classify(Collection<Integer> numbers);
 
Example #5
Source File: RouteToRecipientsExample.java    From tutorials with MIT License 4 votes vote down vote up
@Gateway(requestChannel = "classify.input")
void classify(Collection<Integer> numbers);
 
Example #6
Source File: SeparateFlowsExample.java    From tutorials with MIT License 4 votes vote down vote up
@Gateway(requestChannel = "remainderIsTwoFlow.input")
void remainderIsTwo(Collection<Integer> numbers);
 
Example #7
Source File: SeparateFlowsExample.java    From tutorials with MIT License 4 votes vote down vote up
@Gateway(requestChannel = "remainderIsOneFlow.input")
void remainderIsOne(Collection<Integer> numbers);
 
Example #8
Source File: SeparateFlowsExample.java    From tutorials with MIT License 4 votes vote down vote up
@Gateway(requestChannel = "multipleOfThreeFlow.input")
void multipleofThree(Collection<Integer> numbers);
 
Example #9
Source File: EmailGateway.java    From website with GNU Affero General Public License v3.0 4 votes vote down vote up
@Gateway(requestChannel="publisherEarningReminderEmailChannel")
public void publisherEarningReminder(final Company company);
 
Example #10
Source File: EmailGateway.java    From website with GNU Affero General Public License v3.0 4 votes vote down vote up
@Gateway(requestChannel="paidPublisherPaymentRequestEmailChannel")
public void paidPublisherPaymentRequest(final PublisherPaymentRequest publisherPaymentRequest);
 
Example #11
Source File: EmailGateway.java    From website with GNU Affero General Public License v3.0 4 votes vote down vote up
@Gateway(requestChannel="licencePurchaseEmailChannel")
public void licencePurchaseComplete(Licence licence);
 
Example #12
Source File: EmailGateway.java    From website with GNU Affero General Public License v3.0 4 votes vote down vote up
@Gateway(requestChannel="cancelPublisherPaymentRequestEmailChannel")
public void cancelPublisherPaymentRequest(final PublisherPaymentRequest publisherPaymentRequest);
 
Example #13
Source File: EmailGateway.java    From website with GNU Affero General Public License v3.0 4 votes vote down vote up
@Gateway(requestChannel="reopenUserChannel")
public void reopenUser(final User user);
 
Example #14
Source File: EmailGateway.java    From website with GNU Affero General Public License v3.0 4 votes vote down vote up
@Gateway(requestChannel="closeUserChannel")
public void closeUser(final User user);
 
Example #15
Source File: SpringIntegrationApplication.java    From micrometer with Apache License 2.0 4 votes vote down vote up
@Gateway(requestChannel = "convert.input")
float fahrenheitToCelcius(float fahren);
 
Example #16
Source File: EmailGateway.java    From website with GNU Affero General Public License v3.0 4 votes vote down vote up
@Gateway(requestChannel="paperightCreditTransactionPaymentReceivedChannel")
public void paperightCreditTransactionPaymentReceived(final PaperightCreditTransaction transaction);
 
Example #17
Source File: EmailGateway.java    From website with GNU Affero General Public License v3.0 4 votes vote down vote up
@Gateway(requestChannel="contactUsChannel")
public void contactUs(final ContactMessage contactMessage);
 
Example #18
Source File: EmailGateway.java    From website with GNU Affero General Public License v3.0 4 votes vote down vote up
@Gateway(requestChannel="activateUserChannel")
public void activateUser(final User user);
 
Example #19
Source File: EmailGateway.java    From website with GNU Affero General Public License v3.0 4 votes vote down vote up
@Gateway(requestChannel="userRegistationChannel")
public void userRegistration(final User user);
 
Example #20
Source File: DemoApplication.java    From spring-cloud-sleuth with Apache License 2.0 4 votes vote down vote up
@Gateway(requestChannel = "greetings")
void send(String message);
 
Example #21
Source File: SampleSink.java    From spring-cloud-sleuth with Apache License 2.0 4 votes vote down vote up
@Gateway(requestChannel = "messages")
void send(String message);
 
Example #22
Source File: SampleRequestResponse.java    From spring-cloud-sleuth with Apache License 2.0 4 votes vote down vote up
@Gateway(requestChannel = "xform")
String send(String input);
 
Example #23
Source File: FeedItemSubmitter.java    From myfeed with Apache License 2.0 4 votes vote down vote up
@Gateway(requestChannel = Source.OUTPUT)
void submit(FeedItem feedItem);
 
Example #24
Source File: UserIntializedSender.java    From myfeed with Apache License 2.0 4 votes vote down vote up
@Gateway(requestChannel = UserBinder.USER_INITIALIZED)
void send(User user);
 
Example #25
Source File: StreamProducer.java    From messaging with Apache License 2.0 4 votes vote down vote up
@Gateway(requestChannel = ProducerChannels.DIRECT)
void directGreet(String msg);
 
Example #26
Source File: StreamProducer.java    From messaging with Apache License 2.0 4 votes vote down vote up
@Gateway(requestChannel = ProducerChannels.BROADCAST)
void broadcastGreet(String msg);
 
Example #27
Source File: SftpConfig.java    From java-examples with MIT License 4 votes vote down vote up
@Gateway(requestChannel = "toSftpChannel")
void upload(File file);