<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:camel="http://camel.apache.org/schema/spring"
       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-3.0.xsd
       http://camel.apache.org/schema/spring http://camel.apache.org/schema/spring/camel-spring.xsd">

<bean id="quartz" class="org.apache.camel.component.quartz.QuartzComponent">
            <property name="startDelayedSeconds" value="0"/>
            <property name="autoStartScheduler" value="true"/>
</bean>
               

  <camelContext trace="false" xmlns="http://camel.apache.org/schema/spring">
    <route id="quartzRoute">
        <from uri="quartz://myQuartzJob?cron=0+12+*+*+*+?"/>
        <log message="Message moved through quartz technique"/>
        <pollEnrich uri="file://src/data/quartz"/>
        <to uri="file:C:\Data\FuseJars\messages\quartz"/>
    </route>
    <!-- <route id="simpleRoute">
        <from uri="file://src/data/simple?noop=true"/>
        <log message="Message moved through simple technique"/>
        <to uri="file:C:\Data\FuseJars\messages\simple"/>
        <stop/>
    </route>  -->
</camelContext>

</beans>
