<?xml version="1.0" encoding="UTF-8"?>
<blueprint xmlns="http://www.osgi.org/xmlns/blueprint/v1.0.0"
	   xmlns:cm="http://aries.apache.org/blueprint/xmlns/blueprint-cm/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">

	<cm:property-placeholder persistent-id="org.fusesource.example">
        <cm:default-properties>
            <cm:property name="prefix" value="Blueprint-Example_1"/>
        </cm:default-properties>
    </cm:property-placeholder>

  <camelContext id="camel_1" xmlns="http://camel.apache.org/schema/blueprint">
    <route id="timerToLog_1">
      <from uri="timer:foo?period=5000"/>
      <setBody><simple>State : Processing{ "date" : "2016-12-22 13:16:58.179", "message" : "ID-223445544" }</simple></setBody>
      <log message="The message: ${body}"/>
    </route>
  </camelContext>

</blueprint>
