Skip to content
This repository has been archived by the owner on May 10, 2022. It is now read-only.

Commit

Permalink
issue #39 - adding Ids to camel context files
Browse files Browse the repository at this point in the history
-- blueprint, spring, and spring-boot

Signed-off-by: Brian Fitzpatrick <[email protected]>
  • Loading branch information
bfitzpat committed Jan 9, 2019
1 parent 8721228 commit 695934c
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.osgi.org/xmlns/blueprint/v1.0.0 https://www.osgi.org/xmlns/blueprint/v1.0.0/blueprint.xsd http://camel.apache.org/schema/blueprint http://camel.apache.org/schema/blueprint/camel-blueprint.xsd">
<camelContext id="_context1" xmlns="http://camel.apache.org/schema/blueprint">
<route id="_route1">
<from uri="timer://simpleTimer?period=1000"/>
<setBody>
<simple>Hello from timer at ${header.firedTime}></simple>
<from id="_from1" uri="timer://simpleTimer?period=1000"/>
<setBody id="_setBody1">
<simple>Hello from timer at ${header.firedTime}&gt;</simple>
</setBody>
<to uri="stream:out"/>
<to id="_to1" uri="stream:out"/>
</route>
</camelContext>
</blueprint>
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://camel.apache.org/schema/spring http://camel.apache.org/schema/spring/camel-spring.xsd">
<camelContext id="_camelContext1" xmlns="http://camel.apache.org/schema/spring">
<route id="_route1">
<from uri="timer://simpleTimer?period=1000"/>
<setBody>
<simple>Hello from timer at ${header.firedTime}></simple>
<from id="_from1" uri="timer://simpleTimer?period=1000"/>
<setBody id="_setBody1">
<simple>Hello from timer at ${header.firedTime}&gt;</simple>
</setBody>
<to uri="stream:out"/>
<to id="_to1" uri="stream:out"/>
</route>
</camelContext>
</beans>
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://camel.apache.org/schema/spring http://camel.apache.org/schema/spring/camel-spring.xsd">
<camelContext id="_camelContext1" xmlns="http://camel.apache.org/schema/spring">
<route id="_route1">
<from uri="timer://simpleTimer?period=1000"/>
<setBody>
<simple>Hello from timer at ${header.firedTime}></simple>
<from id="_from1" uri="timer://simpleTimer?period=1000"/>
<setBody id="_setBody1">
<simple>Hello from timer at ${header.firedTime}&gt;</simple>
</setBody>
<to uri="stream:out"/>
<to id="_to1" uri="stream:out"/>
</route>
</camelContext>
</beans>

0 comments on commit 695934c

Please sign in to comment.