Skip to content

Instantly share code, notes, and snippets.

@paoloantinori
Last active March 2, 2017 16:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save paoloantinori/4fce7539230056a9c19eb46eadbbcfd5 to your computer and use it in GitHub Desktop.
Save paoloantinori/4fce7539230056a9c19eb46eadbbcfd5 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="UTF-8"?>
<blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
http://www.osgi.org/xmlns/blueprint/v1.0.0 http://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"
xmlns:cm="http://aries.apache.org/blueprint/xmlns/blueprint-cm/v1.1.0"
>
<cm:property-placeholder persistent-id="my_pid" update-strategy="reload">
</cm:property-placeholder>
<camelContext id="mytest" xmlns="http://camel.apache.org/schema/blueprint">
<route id="timerToLog">
<from uri="timer:foo?period=5000"/>
<log message="Logging key {{key}}"/>
<log message="Logging secret {{secret}}"/>
</route>
</camelContext>
</blueprint>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment