All Downloads are FREE. Search and download functionalities are using the official Maven repository.

OSGI-INF.blueprint.blueprint.xml Maven / Gradle / Ivy

The newest version!
<?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">

  <camelContext id="blueprintCamel" trace="false" xmlns="http://camel.apache.org/schema/blueprint">
    <route id="timerRoute">
      <from uri="timer://foo?fixedRate=true&amp;period=5000"/>
      <setBody>
        <simple>Hello from blueprint based Camel route!</simple>
      </setBody>
      <log message=">>> ${body} : ${header.karaf.name}"/>
    </route>
  </camelContext>
</blueprint>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy