From a4960700ca2a0e57466799cf24548ce8a00a5f07 Mon Sep 17 00:00:00 2001 From: Oleg Zhurakousky Date: Thu, 16 Sep 2010 16:22:40 -0400 Subject: [PATCH] INT-1380 added jms sample --- getting-started/jms/.classpath | 3 ++ getting-started/jms/.gitignore | 1 + getting-started/jms/README.txt | 9 ---- .../activemq-data/localhost/journal/data-1 | Bin 0 -> 956 bytes .../localhost/journal/data-control | Bin 0 -> 2088 bytes .../kr-store/data/data-container-roots-1 | Bin 0 -> 273 bytes .../localhost/kr-store/data/data-queue-data-1 | Bin 0 -> 114 bytes ...-index-queue-data_queue#3a#2f#2fqueue.demo | Bin 0 -> 1025 bytes .../kr-store/data/index-container-roots | Bin 0 -> 153 bytes .../localhost/kr-store/data/index-queue-data | Bin 0 -> 102 bytes .../localhost/kr-store/data/lock | 0 .../localhost/kr-store/state/data-kaha-1 | Bin 0 -> 290 bytes .../kr-store/state/data-store-state-1 | Bin 0 -> 582 bytes .../state/hash-index-store-state_state | Bin 0 -> 3073 bytes .../localhost/kr-store/state/index-kaha | Bin 0 -> 306 bytes .../kr-store/state/index-store-state | Bin 0 -> 204 bytes .../kr-store/state/index-transactions-state | Bin 0 -> 51 bytes .../localhost/kr-store/state/lock | 0 .../jms/activemq-data/localhost/lock | 0 getting-started/jms/pom.xml | 48 +++++++++--------- getting-started/jms/readme.txt | 16 ++++++ .../integration/samples/jms/DemoBean.java | 3 +- .../META-INF/spring/integration}/common.xml | 0 .../integration}/inboundChannelAdapter.xml | 0 .../spring/integration}/inboundGateway.xml | 0 .../integration}/outboundChannelAdapter.xml | 0 .../spring/integration}/outboundGateway.xml | 0 .../samples/jms/ChannelAdapterDemo.java | 5 +- .../integration/samples/jms/GatewayDemo.java | 6 ++- .../{main/java => test/resources}/log4j.xml | 4 +- getting-started/jms/target/classes/log4j.xml | 36 ------------- .../samples/jms/ActiveMqTestUtils.class | Bin 1140 -> 0 bytes .../samples/jms/ChannelAdapterDemo.class | Bin 943 -> 0 bytes .../integration/samples/jms/DemoBean.class | Bin 738 -> 0 bytes .../integration/samples/jms/GatewayDemo.class | Bin 908 -> 0 bytes .../integration/samples/jms/common.xml | 30 ----------- .../samples/jms/inboundChannelAdapter.xml | 24 --------- .../samples/jms/inboundGateway.xml | 28 ---------- .../samples/jms/outboundChannelAdapter.xml | 22 -------- .../samples/jms/outboundGateway.xml | 30 ----------- .../jms/target/jms-2.0.0.BUILD-SNAPSHOT.jar | Bin 8748 -> 0 bytes .../jms/target/maven-archiver/pom.properties | 5 -- 42 files changed, 56 insertions(+), 214 deletions(-) create mode 100644 getting-started/jms/.gitignore delete mode 100644 getting-started/jms/README.txt create mode 100644 getting-started/jms/activemq-data/localhost/journal/data-1 create mode 100644 getting-started/jms/activemq-data/localhost/journal/data-control create mode 100644 getting-started/jms/activemq-data/localhost/kr-store/data/data-container-roots-1 create mode 100644 getting-started/jms/activemq-data/localhost/kr-store/data/data-queue-data-1 create mode 100644 getting-started/jms/activemq-data/localhost/kr-store/data/hash-index-queue-data_queue#3a#2f#2fqueue.demo create mode 100644 getting-started/jms/activemq-data/localhost/kr-store/data/index-container-roots create mode 100644 getting-started/jms/activemq-data/localhost/kr-store/data/index-queue-data create mode 100644 getting-started/jms/activemq-data/localhost/kr-store/data/lock create mode 100644 getting-started/jms/activemq-data/localhost/kr-store/state/data-kaha-1 create mode 100644 getting-started/jms/activemq-data/localhost/kr-store/state/data-store-state-1 create mode 100644 getting-started/jms/activemq-data/localhost/kr-store/state/hash-index-store-state_state create mode 100644 getting-started/jms/activemq-data/localhost/kr-store/state/index-kaha create mode 100644 getting-started/jms/activemq-data/localhost/kr-store/state/index-store-state create mode 100644 getting-started/jms/activemq-data/localhost/kr-store/state/index-transactions-state create mode 100644 getting-started/jms/activemq-data/localhost/kr-store/state/lock create mode 100644 getting-started/jms/activemq-data/localhost/lock create mode 100644 getting-started/jms/readme.txt rename getting-started/jms/src/main/{java/org/springframework/integration/samples/jms => resources/META-INF/spring/integration}/common.xml (100%) rename getting-started/jms/src/main/{java/org/springframework/integration/samples/jms => resources/META-INF/spring/integration}/inboundChannelAdapter.xml (100%) rename getting-started/jms/src/main/{java/org/springframework/integration/samples/jms => resources/META-INF/spring/integration}/inboundGateway.xml (100%) rename getting-started/jms/src/main/{java/org/springframework/integration/samples/jms => resources/META-INF/spring/integration}/outboundChannelAdapter.xml (100%) rename getting-started/jms/src/main/{java/org/springframework/integration/samples/jms => resources/META-INF/spring/integration}/outboundGateway.xml (100%) rename getting-started/jms/src/{main => test}/java/org/springframework/integration/samples/jms/ChannelAdapterDemo.java (86%) rename getting-started/jms/src/{main => test}/java/org/springframework/integration/samples/jms/GatewayDemo.java (88%) rename getting-started/jms/src/{main/java => test/resources}/log4j.xml (90%) delete mode 100644 getting-started/jms/target/classes/log4j.xml delete mode 100644 getting-started/jms/target/classes/org/springframework/integration/samples/jms/ActiveMqTestUtils.class delete mode 100644 getting-started/jms/target/classes/org/springframework/integration/samples/jms/ChannelAdapterDemo.class delete mode 100644 getting-started/jms/target/classes/org/springframework/integration/samples/jms/DemoBean.class delete mode 100644 getting-started/jms/target/classes/org/springframework/integration/samples/jms/GatewayDemo.class delete mode 100644 getting-started/jms/target/classes/org/springframework/integration/samples/jms/common.xml delete mode 100644 getting-started/jms/target/classes/org/springframework/integration/samples/jms/inboundChannelAdapter.xml delete mode 100644 getting-started/jms/target/classes/org/springframework/integration/samples/jms/inboundGateway.xml delete mode 100644 getting-started/jms/target/classes/org/springframework/integration/samples/jms/outboundChannelAdapter.xml delete mode 100644 getting-started/jms/target/classes/org/springframework/integration/samples/jms/outboundGateway.xml delete mode 100644 getting-started/jms/target/jms-2.0.0.BUILD-SNAPSHOT.jar delete mode 100644 getting-started/jms/target/maven-archiver/pom.properties diff --git a/getting-started/jms/.classpath b/getting-started/jms/.classpath index 24166ba5..dde3100b 100644 --- a/getting-started/jms/.classpath +++ b/getting-started/jms/.classpath @@ -1,6 +1,9 @@ + + + diff --git a/getting-started/jms/.gitignore b/getting-started/jms/.gitignore new file mode 100644 index 00000000..ea8c4bf7 --- /dev/null +++ b/getting-started/jms/.gitignore @@ -0,0 +1 @@ +/target diff --git a/getting-started/jms/README.txt b/getting-started/jms/README.txt deleted file mode 100644 index 4a60dcf3..00000000 --- a/getting-started/jms/README.txt +++ /dev/null @@ -1,9 +0,0 @@ -Instructions for running the HelloWorldDemo sample -------------------------------------------------------------------------------- -1. See README.txt in the parent directory. - -This demo consists of two samples, ChannelAdapterDemo and GatewayDemo. -PLease see the corresponding javadocs for more details on each sample. - - -Happy integration :-) diff --git a/getting-started/jms/activemq-data/localhost/journal/data-1 b/getting-started/jms/activemq-data/localhost/journal/data-1 new file mode 100644 index 0000000000000000000000000000000000000000..ee2769676cf1ea98f9a3c9ea1f0278f199a80c23 GIT binary patch literal 956 zcmb_bQA)!=5S^*E(jGt%3Jswsv?OF>5<~DW30Q z#Bd0ad@qu8jc9`H^4EMk4PSDRv+{Uud0m{v(UwZE(`U#d#1+DD;yGDD@6|X{ zx$T%HNye)=;X&vPmk%j@Uf!jPjsU-XvOt5CL}f%MHK^L!#EU!oFlxQxF@trXwhQ>O zo0QnvqjY;SonY?Yok8*Gzy%*Nr&z4G1bn_x1He$K=Bzvp4Ilmo&_ H3V0h|v%q>D literal 0 HcmV?d00001 diff --git a/getting-started/jms/activemq-data/localhost/journal/data-control b/getting-started/jms/activemq-data/localhost/journal/data-control new file mode 100644 index 0000000000000000000000000000000000000000..8ddb3b4722b366933f63fbf2f416d0385303d8f5 GIT binary patch literal 2088 zcmZQz00R~vDZ>aPfSBRZdQ7`oam+SW!^U!@yNonp&Ewo03?P2sAs_=o%VXn3$Pa7?>Jbn49Pt aSs7RvSs7XxLiLPNqaiRF0z)SR{sRC|SrnQ8 literal 0 HcmV?d00001 diff --git a/getting-started/jms/activemq-data/localhost/kr-store/data/index-container-roots b/getting-started/jms/activemq-data/localhost/kr-store/data/index-container-roots new file mode 100644 index 0000000000000000000000000000000000000000..d0c7b846045c50eef87f2665530369376198b600 GIT binary patch literal 153 xcmb;lW&95X3=oh8SxqVmQJyAfFK?24wPpv?KTo3;>NmR*?Vz literal 0 HcmV?d00001 diff --git a/getting-started/jms/activemq-data/localhost/kr-store/data/index-queue-data b/getting-started/jms/activemq-data/localhost/kr-store/data/index-queue-data new file mode 100644 index 0000000000000000000000000000000000000000..b08363d82d20c3ecf3933f447f6ccddafc14eb6d GIT binary patch literal 102 ncmb;lW&Do^FaQCvG>BgniXsG(28uF*q@X|tNW=JsK(-A4Haj{4 literal 0 HcmV?d00001 diff --git a/getting-started/jms/activemq-data/localhost/kr-store/data/lock b/getting-started/jms/activemq-data/localhost/kr-store/data/lock new file mode 100644 index 00000000..e69de29b diff --git a/getting-started/jms/activemq-data/localhost/kr-store/state/data-kaha-1 b/getting-started/jms/activemq-data/localhost/kr-store/state/data-kaha-1 new file mode 100644 index 0000000000000000000000000000000000000000..e769fa9b9027ed1fea0a5e42282684b3ea4eba11 GIT binary patch literal 290 zcmZQ%U|RZdQ7`ohV>z)(?8&db1ET#{dus#{!=Sdv--GzLUhFak}D2I6q?O=e?Y0a;zb zAe2&Cl$ey08eE!GoLrQdlv-2_Ha{6?emwc+i!cb46eZ>rgFKp_R}Aw253*nd0A*NW A@&Et; literal 0 HcmV?d00001 diff --git a/getting-started/jms/activemq-data/localhost/kr-store/state/data-store-state-1 b/getting-started/jms/activemq-data/localhost/kr-store/state/data-store-state-1 new file mode 100644 index 0000000000000000000000000000000000000000..cdc3fa73fabcfa4a3c1493a6a85efdd7e07ac14e GIT binary patch literal 582 zcmZQ%U|`8G*unKXDoV{O(Mv4J&&^EMa|BaP`T04iiFpn)wsZO0|1oA_VDw~QElbQPO|2*Zn#2Gy zQUZuYAhz*(`nkA9#D}>C1$+AYfh0qLI1p-|AlSZ~#JqGp&%Bb<^wc7uM+=sGZ)~?f zHn)gD0HMyWG&d==sBO(uS?(zhx|tXlz}B*ZOqKy+35d0VMXAa8MJc*PscES|KP0CX zgA{}TaS)2tV6S>47H9Y-7O=A4I(S$t;UY5wlN$q9PJUvFTVgUWtUMVwOEQX5i!<_b hQYs4U9e{=~Fz}Rf07(H5vjSu^-2#{qWZM7)FaUv(s1X1F literal 0 HcmV?d00001 diff --git a/getting-started/jms/activemq-data/localhost/kr-store/state/hash-index-store-state_state b/getting-started/jms/activemq-data/localhost/kr-store/state/hash-index-store-state_state new file mode 100644 index 0000000000000000000000000000000000000000..a906d976f743bf4a20969f047f9100366aa145ed GIT binary patch literal 3073 zcmZSl4+RViOt%;q7#N`#NHG`#vCx{g46G##+{GpNMX9>QC5a`eAgNI>8UmvsFbqO~ z5t08Hxq$vb&i`pZz6d1$^LqNZxJJZ>xdsJ$`uhz7e~)@$Gz3ON0GQtq`JeeBFhG#= p|4blX0+Rm)i&B&Gi&AupQqxk4QuC5ii$?=*Gz3ONV91BSe*hXhF~I-; literal 0 HcmV?d00001 diff --git a/getting-started/jms/activemq-data/localhost/kr-store/state/index-kaha b/getting-started/jms/activemq-data/localhost/kr-store/state/index-kaha new file mode 100644 index 0000000000000000000000000000000000000000..58cd920e71015c305c26c715aee7a48a9fda2063 GIT binary patch literal 306 zcmb;lW&95X3=oh83xoL(&oj oWJe=uIRn)KQ;LlSDM1#8Y5`F|0QWYK4RhEoAUhe!7LYmy0P~rR>Hq)$ literal 0 HcmV?d00001 diff --git a/getting-started/jms/activemq-data/localhost/kr-store/state/index-store-state b/getting-started/jms/activemq-data/localhost/kr-store/state/index-store-state new file mode 100644 index 0000000000000000000000000000000000000000..b7c6635cc44c7780ce929c37bcf35a37cc09ebbf GIT binary patch literal 204 zcmb;lW&95X3=l9A#s|?LA#{FKC?iZMluiTEP%*|tAX^NHUjt|tJ e;=cj1LlIhlJTNc@k}#W}0@*SMJ|i2D9R>iuiZSQ_ literal 0 HcmV?d00001 diff --git a/getting-started/jms/activemq-data/localhost/kr-store/state/index-transactions-state b/getting-started/jms/activemq-data/localhost/kr-store/state/index-transactions-state new file mode 100644 index 0000000000000000000000000000000000000000..c097b35b99df407d046e8fd5da3f18c201713583 GIT binary patch literal 51 Tcmb;lW&Do^FaQCvG>8uXX+$Wg literal 0 HcmV?d00001 diff --git a/getting-started/jms/activemq-data/localhost/kr-store/state/lock b/getting-started/jms/activemq-data/localhost/kr-store/state/lock new file mode 100644 index 00000000..e69de29b diff --git a/getting-started/jms/activemq-data/localhost/lock b/getting-started/jms/activemq-data/localhost/lock new file mode 100644 index 00000000..e69de29b diff --git a/getting-started/jms/pom.xml b/getting-started/jms/pom.xml index 790df4b4..0d15f61f 100644 --- a/getting-started/jms/pom.xml +++ b/getting-started/jms/pom.xml @@ -2,43 +2,45 @@ 4.0.0 - - org.springframework.integration.samples - spring-integration-samples - 2.0.0.BUILD-SNAPSHOT - + org.springframework.integration.samples jms + 2.0.0 Spring Integration JMS Sample + jar + + 2.0.0.M7 + 5.2.0 + org.apache.activemq activemq-core - 5.2.0 + ${activemq.version} org.springframework.integration spring-integration-jms + ${spring.integration.version} org.springframework.integration spring-integration-stream + ${spring.integration.version} - - - repository.springframework.maven.release - Spring Framework Maven Release Repository - http://maven.springframework.org/release - - - repository.springframework.maven.milestone - Spring Framework Maven Milestone Repository - http://maven.springframework.org/milestone - - - repository.springframework.maven.snapshot - Spring Framework Maven Snapshot Repository - http://maven.springframework.org/snapshot - - + + + + org.apache.maven.plugins + maven-compiler-plugin + + 1.5 + 1.5 + -Xlint:all + true + false + + + + diff --git a/getting-started/jms/readme.txt b/getting-started/jms/readme.txt new file mode 100644 index 00000000..657364b1 --- /dev/null +++ b/getting-started/jms/readme.txt @@ -0,0 +1,16 @@ +This example demonstrates the following aspects of the JMS support available with Spring Integration: +1. JMS Message-driven Channel Adapter +2. JMS Inbound Gateway +3. JMS Outbound Gateway + +as well as Poller and stdout and stdin Channel Adapters (from Stream support) which will allow you to interact with JMS via the console. +It uses ActiveMQ embedded broker + +To run samples simply execute GatewayDemo and ChannelAdapterDemo classes located in the org.springframework.integration.samples.jms package + +When running demos you will see the following prompt: +> Please type something and hit return + +GatewayDemo uses DemoBean service which will echo the response upper-casing it + +ChannelAdapterDemo will simply echo the response \ No newline at end of file diff --git a/getting-started/jms/src/main/java/org/springframework/integration/samples/jms/DemoBean.java b/getting-started/jms/src/main/java/org/springframework/integration/samples/jms/DemoBean.java index b19127a7..1d9a0b95 100644 --- a/getting-started/jms/src/main/java/org/springframework/integration/samples/jms/DemoBean.java +++ b/getting-started/jms/src/main/java/org/springframework/integration/samples/jms/DemoBean.java @@ -27,7 +27,6 @@ public class DemoBean { @ServiceActivator public String upperCase(String input) { - return input.toUpperCase(); + return "JMS response: " + input.toUpperCase(); } - } diff --git a/getting-started/jms/src/main/java/org/springframework/integration/samples/jms/common.xml b/getting-started/jms/src/main/resources/META-INF/spring/integration/common.xml similarity index 100% rename from getting-started/jms/src/main/java/org/springframework/integration/samples/jms/common.xml rename to getting-started/jms/src/main/resources/META-INF/spring/integration/common.xml diff --git a/getting-started/jms/src/main/java/org/springframework/integration/samples/jms/inboundChannelAdapter.xml b/getting-started/jms/src/main/resources/META-INF/spring/integration/inboundChannelAdapter.xml similarity index 100% rename from getting-started/jms/src/main/java/org/springframework/integration/samples/jms/inboundChannelAdapter.xml rename to getting-started/jms/src/main/resources/META-INF/spring/integration/inboundChannelAdapter.xml diff --git a/getting-started/jms/src/main/java/org/springframework/integration/samples/jms/inboundGateway.xml b/getting-started/jms/src/main/resources/META-INF/spring/integration/inboundGateway.xml similarity index 100% rename from getting-started/jms/src/main/java/org/springframework/integration/samples/jms/inboundGateway.xml rename to getting-started/jms/src/main/resources/META-INF/spring/integration/inboundGateway.xml diff --git a/getting-started/jms/src/main/java/org/springframework/integration/samples/jms/outboundChannelAdapter.xml b/getting-started/jms/src/main/resources/META-INF/spring/integration/outboundChannelAdapter.xml similarity index 100% rename from getting-started/jms/src/main/java/org/springframework/integration/samples/jms/outboundChannelAdapter.xml rename to getting-started/jms/src/main/resources/META-INF/spring/integration/outboundChannelAdapter.xml diff --git a/getting-started/jms/src/main/java/org/springframework/integration/samples/jms/outboundGateway.xml b/getting-started/jms/src/main/resources/META-INF/spring/integration/outboundGateway.xml similarity index 100% rename from getting-started/jms/src/main/java/org/springframework/integration/samples/jms/outboundGateway.xml rename to getting-started/jms/src/main/resources/META-INF/spring/integration/outboundGateway.xml diff --git a/getting-started/jms/src/main/java/org/springframework/integration/samples/jms/ChannelAdapterDemo.java b/getting-started/jms/src/test/java/org/springframework/integration/samples/jms/ChannelAdapterDemo.java similarity index 86% rename from getting-started/jms/src/main/java/org/springframework/integration/samples/jms/ChannelAdapterDemo.java rename to getting-started/jms/src/test/java/org/springframework/integration/samples/jms/ChannelAdapterDemo.java index 589f90f4..fc19ae79 100644 --- a/getting-started/jms/src/main/java/org/springframework/integration/samples/jms/ChannelAdapterDemo.java +++ b/getting-started/jms/src/test/java/org/springframework/integration/samples/jms/ChannelAdapterDemo.java @@ -32,13 +32,16 @@ import org.springframework.context.support.ClassPathXmlApplicationContext; public class ChannelAdapterDemo { private final static String[] configFiles = { - "common.xml", "inboundChannelAdapter.xml", "outboundChannelAdapter.xml" + "/META-INF/spring/integration/common.xml", + "/META-INF/spring/integration/inboundChannelAdapter.xml", + "/META-INF/spring/integration/outboundChannelAdapter.xml" }; public static void main(String[] args) { ActiveMqTestUtils.prepare(); new ClassPathXmlApplicationContext(configFiles, ChannelAdapterDemo.class); + System.out.println("Please type something and hit return"); } } diff --git a/getting-started/jms/src/main/java/org/springframework/integration/samples/jms/GatewayDemo.java b/getting-started/jms/src/test/java/org/springframework/integration/samples/jms/GatewayDemo.java similarity index 88% rename from getting-started/jms/src/main/java/org/springframework/integration/samples/jms/GatewayDemo.java rename to getting-started/jms/src/test/java/org/springframework/integration/samples/jms/GatewayDemo.java index 35a6022e..db443bc6 100644 --- a/getting-started/jms/src/main/java/org/springframework/integration/samples/jms/GatewayDemo.java +++ b/getting-started/jms/src/test/java/org/springframework/integration/samples/jms/GatewayDemo.java @@ -35,13 +35,15 @@ import org.springframework.context.support.ClassPathXmlApplicationContext; public class GatewayDemo { private final static String[] configFiles = { - "common.xml", "inboundGateway.xml", "outboundGateway.xml" + "/META-INF/spring/integration/common.xml", + "/META-INF/spring/integration/inboundGateway.xml", + "/META-INF/spring/integration/outboundGateway.xml" }; - public static void main(String[] args) { ActiveMqTestUtils.prepare(); new ClassPathXmlApplicationContext(configFiles, GatewayDemo.class); + System.out.println("Please type something and hit return"); } } diff --git a/getting-started/jms/src/main/java/log4j.xml b/getting-started/jms/src/test/resources/log4j.xml similarity index 90% rename from getting-started/jms/src/main/java/log4j.xml rename to getting-started/jms/src/test/resources/log4j.xml index a54abb80..5144c9ea 100644 --- a/getting-started/jms/src/main/java/log4j.xml +++ b/getting-started/jms/src/test/resources/log4j.xml @@ -15,8 +15,8 @@ - - + + diff --git a/getting-started/jms/target/classes/log4j.xml b/getting-started/jms/target/classes/log4j.xml deleted file mode 100644 index a54abb80..00000000 --- a/getting-started/jms/target/classes/log4j.xml +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/getting-started/jms/target/classes/org/springframework/integration/samples/jms/ActiveMqTestUtils.class b/getting-started/jms/target/classes/org/springframework/integration/samples/jms/ActiveMqTestUtils.class deleted file mode 100644 index d12db3d0e7f4f03e0677e34981a617d6b8580539..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1140 zcmbtT%Tg0T6g`~;CW*r<5Kssb2#-8~k@&>$(9*KXGN@%Rmbw~}CN#`sLeGG*_a|Ig zu3YN^EUjYc!f){hT==*>fmjMVGnKy6-M7y<_uQVZKR+D;$m52F0K=jqYlhp9qF!5< zrp;eCa?22PkJqH>38!wjrrof(Yi!!CakJuyUB0rt%3bfVCoES(h@pGa+%*l$tk;YO zYn!~{F|;p;y6~15g6T||A#}^B@+g9c=x9SbLswDM`TZSxjmuSY&EgEPqEj)gvMGg{ zA1#Kw4dF5@7ynCSfkA6X-Y_MPpc^p_J%5QV?YSPeb@ZZ-1UoyVKVI}}5{~hZobgJY z`U@!FBQdE3~D&X(0dAyjv*v`QG{*Pi7wsb^F1Uo z!YpLU8qPE5$LH?|i-(b9=rH{**xNHz(=($O#+Y(75e13UF@Z^jNR?aMBEcep0_m z%qw9R8B+g9IGLR(tNhD4uK0{i`Kk^f=|VYjk0D&y5LQ)k@~ih0J_aV}f0qm@d1hs6 z#ccSuNW(lswB+o_3Rk5u^dGmYb&Y40$rvRAgY;>DMyBp5jT+4iii~1g_5k7c^b$an zMzsy<^BEfTW&*_ynnlprI=te80Rtb<6^rj<;4_Aw#zqb>dN2DCsXuTrgy`rH!bl)S zUi4$61sx+bQ%KW(RP~q0l&&|ls`Tcw`^daTn!-#m_XQ)t#dqjaJlR|#e}FmSc@oy0LL(P9A0zX5;r{fz(s diff --git a/getting-started/jms/target/classes/org/springframework/integration/samples/jms/ChannelAdapterDemo.class b/getting-started/jms/target/classes/org/springframework/integration/samples/jms/ChannelAdapterDemo.class deleted file mode 100644 index 6c98ce372d4874df68b3b3c40d5b001caa89dbec..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 943 zcmbtS%Wl&^6g`u7)6f(b63VlrK$9$LiET?o2x1i;Qc6U`YT`_j3HFQ`PfC9aSQLTa z1NbP!wOuJh3Jb)-*E9EV=G=Sk&tG4E0CtH+{<^(DkKy@X2)WlslzR{LjxUqY2(TdI+s ztMM|eG<=!ix}Mv=#MeNiD#)Y2Q0+-2Ud)4$Fvoo43kIjBJ?;;&5%Zs3%FDawdRUJwFYI}#!eA;7#{u0OC8V3Q}O)$v54$zEB&Z~ zyD{xzXhg^jO?sE%$tpw=&x$kaM)NS##=2dfN6{;8r*8tk6NbL@lHKU0X=OBUKOV^g zhP_oC{2_jVbdZS6&4h+m?(4bnM7$^r^<^dF1>27ohj`PD(AJWuv1oM4qJ$!S3~O}j zB1aae7rvuB%sQ3+Fz0Oahk0kS{~69l3T1GGtdk@*2x1po#Jh$aTuq`eIH`I8=+d8& zKi@t_eNkRWoM}lVO~5vB0XMu-_ZC3$6@EVw}9D5nrV`4VFT@i RK?+yJUeX>zlK?Vk{RYQZ>8t<% diff --git a/getting-started/jms/target/classes/org/springframework/integration/samples/jms/DemoBean.class b/getting-started/jms/target/classes/org/springframework/integration/samples/jms/DemoBean.class deleted file mode 100644 index 98bc009bd9de7e228c9ee00e5b10e23df093c0f3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 738 zcmbVKT~8B16g^W~Dy4i?1VJU?#S}=G#26A%BmvZ?s)^OUPq)`)N_S>6Gh6?bykO!3 zKY$-)yt}P51`?w$_spGp=FFLU=jP{+YXC3stcsGrOY36kQ>RV*#i@k8T6ZC}2^2dO zv^CPJBps5MgT%|%l-N^Jri!w_@<5H094Zsb54{0JL16Ys8y$`XW|}))f%2K{Qw=ki ztD}Nhfu*)K^gc^^wMeIi2T|&2l)`Uf`hpKi*mbb6J{_J5!!7c;0MJ zeRe|r&eqP|ErE@XnF%_fuJ)R(oET$6(E)by>aR}JEnRlVjdVmOQP3k5tZUWq5Ra-@ z{i9`LD|M`4U0^=g&r{2*&3g@2v`I5=a^pVtwT{hPL~nK8)P>)3+RvXZaP%+s-;wt! zrZ=XaTK)$uY=h^?KL#lAis#6&%9&&ojFsK*cyL*iYaH`3u!(t&^)Z2Qfir%Vz-( zMIiV9J_<3mBc-6cz=OxTvomMT%$c9RzWxAk51SSW4EL4x-6YmB^7l0l#gWqQTp1bR zYi^{9+=Pd5AQE>JChjwC#1a4SM1;yhiD7ZX54jug$ah~3N5V4<^PYDjeI)fvlp&Cbf z6F#~BER|DZ^Y_CX$X`Pl6^43OM&iXd916Y5hk+oZuJU-$=US%siL`(2Tk*G2|O4L4K1 zR;)$LH4Sx*;qfd)(#eQp<0j)cR@%6ofG5c-ZVujrK|78E>1FzN@-Q2#Xr!}PXV{q4 z!6}_Hr0q;su6>%C-BV-jiF7AO;ZsYrl`aPnrahpQWVn>dM5iLEu;^o$qgw|hvcO8^ zJM2Nxsr3dWXQ4MJJBz)~a6Zyg0q4j%Szv=8*0F>Jv0cOY>@@`^9VdV;{TcbonI#LaFIBHSX{;x@}z9q#4b&)f5FvnSp5XYVJEmXg;~g&xlQ&C7H~IXki*rn Nk+sLrB!B{1zX4Q~+*tqs diff --git a/getting-started/jms/target/classes/org/springframework/integration/samples/jms/common.xml b/getting-started/jms/target/classes/org/springframework/integration/samples/jms/common.xml deleted file mode 100644 index 0d9c717f..00000000 --- a/getting-started/jms/target/classes/org/springframework/integration/samples/jms/common.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/getting-started/jms/target/classes/org/springframework/integration/samples/jms/inboundChannelAdapter.xml b/getting-started/jms/target/classes/org/springframework/integration/samples/jms/inboundChannelAdapter.xml deleted file mode 100644 index 898441c0..00000000 --- a/getting-started/jms/target/classes/org/springframework/integration/samples/jms/inboundChannelAdapter.xml +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - - - - diff --git a/getting-started/jms/target/classes/org/springframework/integration/samples/jms/inboundGateway.xml b/getting-started/jms/target/classes/org/springframework/integration/samples/jms/inboundGateway.xml deleted file mode 100644 index 5fa49455..00000000 --- a/getting-started/jms/target/classes/org/springframework/integration/samples/jms/inboundGateway.xml +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - diff --git a/getting-started/jms/target/classes/org/springframework/integration/samples/jms/outboundChannelAdapter.xml b/getting-started/jms/target/classes/org/springframework/integration/samples/jms/outboundChannelAdapter.xml deleted file mode 100644 index 33d5b920..00000000 --- a/getting-started/jms/target/classes/org/springframework/integration/samples/jms/outboundChannelAdapter.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - - - - diff --git a/getting-started/jms/target/classes/org/springframework/integration/samples/jms/outboundGateway.xml b/getting-started/jms/target/classes/org/springframework/integration/samples/jms/outboundGateway.xml deleted file mode 100644 index 3f282ad6..00000000 --- a/getting-started/jms/target/classes/org/springframework/integration/samples/jms/outboundGateway.xml +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - diff --git a/getting-started/jms/target/jms-2.0.0.BUILD-SNAPSHOT.jar b/getting-started/jms/target/jms-2.0.0.BUILD-SNAPSHOT.jar deleted file mode 100644 index b658a3629779fd18f4776fe33f8a4d1c601226c3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 8748 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 diff --git a/getting-started/jms/target/maven-archiver/pom.properties b/getting-started/jms/target/maven-archiver/pom.properties deleted file mode 100644 index b494df34..00000000 --- a/getting-started/jms/target/maven-archiver/pom.properties +++ /dev/null @@ -1,5 +0,0 @@ -#Generated by Maven -#Sat Sep 04 08:22:08 EDT 2010 -version=2.0.0.BUILD-SNAPSHOT -groupId=org.springframework.integration.samples -artifactId=jms