From 4942c5c1fb792806b3bcc9fa6da2beaf44d30bba Mon Sep 17 00:00:00 2001 From: Gary Russell Date: Wed, 12 Nov 2014 15:11:04 -0500 Subject: [PATCH] Add Id to JmsListenerEndpoint Docs Issue: SPR-12425 --- src/asciidoc/index.adoc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/asciidoc/index.adoc b/src/asciidoc/index.adoc index d4da033e3c..61c6e83b1d 100644 --- a/src/asciidoc/index.adoc +++ b/src/asciidoc/index.adoc @@ -43561,6 +43561,7 @@ programmatically in addition to the ones that are detected by the `JmsListener` @Override public void configureJmsListeners(JmsListenerEndpointRegistrar registrar) { SimpleJmsListenerEndpoint endpoint = new SimpleJmsListenerEndpoint(); + endpoint.setId("myJmsEndpoint"); endpoint.setDestination("anotherQueue"); endpoint.setMessageListener(message -> { // processing