Hi,

I use Spring notation to describe components and beans.

Ho can I forward <property name="destinationService"> to QuartzComponent?

<!-- components within the JBI container -->
    <bean id="configNotifier"
class="org.servicemix.components.quartz.QuartzComponent">
                <property name="triggers">
            <map>
                <entry>
                    <key>
                        <bean class="org.quartz.SimpleTrigger">
                            <property name="repeatInterval" value="10000"/>
                            <property name="repeatCount" value="-1"/>
                        </bean>
                    </key>
                    <bean class="org.quartz.JobDetail">
                        <property name="name" value="configer
notification"/>
                        <property name="group" value="ServiceMix"/>
                    </bean>
                </entry>
            </map>
        </property>
    </bean>

Ho can I point destination service in this case?

Regards,
Maxim


Reply via email to