To the rest of your application, the SchedulerFactoryBean is the Scheduler (see the FactoryBean JavaDocs for details).
So if your class has a property named myScheduler of type org.quartz.Scheduler, the following should be sufficient:
Code:
<bean id="springScheduler" class="org.springframework.scheduling.quartz.SchedulerFactoryBean">
...
</bean>
<bean name="myBean" class="org.example.MyBean">
<property name="myScheduler">
<ref local="springScheduler"/>
</property>
</bean>
At least that's how I understand it..