From 4299293abb064b5219536f912dc665e58401fe79 Mon Sep 17 00:00:00 2001 From: lahma Date: Thu, 25 Sep 2008 06:39:22 +0000 Subject: [PATCH] Fixed class attributes to be type in XML configuration samples --- doc/reference/src/scheduling.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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" />