diff --git a/doc/reference/src/scheduling.xml b/doc/reference/src/scheduling.xml index 53ca930a..addbeda9 100644 --- a/doc/reference/src/scheduling.xml +++ b/doc/reference/src/scheduling.xml @@ -93,7 +93,7 @@ public class ExampleJob extends QuartzJobObject { the MethodInvokingJobDetailFactoryObject you can do exactly this: - <object id="JobDetail" class="Spring.Scheduling.Quartz.MethodInvokingJobDetailFactoryObject, Spring.Scheduling.Quartz"> + <object id="JobDetail" type="Spring.Scheduling.Quartz.MethodInvokingJobDetailFactoryObject, Spring.Scheduling.Quartz"> <property name="TargetObject" ref="ExampleBusinessObject" /> <property name="TargetMethod" value="DoIt" /> </object> @@ -112,7 +112,7 @@ public class ExampleJob extends QuartzJobObject { } -<object id="ExampleBusinessObject" class="Examples.BusinessObjects.ExampleBusinessObject, Examples.BusinessObjects"/> +<object id="ExampleBusinessObject" type="Examples.BusinessObjects.ExampleBusinessObject, Examples.BusinessObjects"/> Using the MethodInvokingJobDetailFactoryObject, you don't @@ -132,7 +132,7 @@ public class ExampleJob extends QuartzJobObject { non-concurrent, set the concurrent flag to false. - <object id="JobDetail" class="Spring.Scheduling.Quartz.MethodInvokingJobDetailFactoryObject, Spring.Scheduling.Quartz"> + <object id="JobDetail" type="Spring.Scheduling.Quartz.MethodInvokingJobDetailFactoryObject, Spring.Scheduling.Quartz"> <property name="TargetObject" ref="ExampleBusinessObject" /> <property name="TargetMethod" value="DoIt" /> <property name="Concurrent" value="false" />