<bean id="indexWriterJobCronTrigger"
class="org.springframework.scheduling.quartz.CronT riggerBean">

<property name="jobDetail">
<bean class="com.jph.spring.MethodInvokingSequenceJobDet ailFactoryBean">
<property name="methodInvokerList">
<list>
<bean class="org.springframework.util.MethodInvoker">
<property name="targetObject" ref="indexUpdater"/>
<property name="targetMethod" value="process"/>
</bean>
</property>
</bean>

I need to pass one parameter to the process method.
Could any help me how could I do.
Thanks
Brahma