Skip to content

Commit 676f7f9

Browse files
committed
Updated Quartz version range in javadoc
Issue: SPR-10775
1 parent f835188 commit 676f7f9

10 files changed

+15
-15
lines changed

spring-context-support/src/main/java/org/springframework/scheduling/quartz/AdaptableJobFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
* JobFactory implementation that supports {@link java.lang.Runnable}
3131
* objects as well as standard Quartz {@link org.quartz.Job} instances.
3232
*
33-
* <p>Compatible with Quartz 1.8 as well as Quartz 2.0/2.1, as of Spring 4.0.
33+
* <p>Compatible with Quartz 1.8 as well as Quartz 2.0-2.2, as of Spring 4.0.
3434
*
3535
* @author Juergen Hoeller
3636
* @since 2.0

spring-context-support/src/main/java/org/springframework/scheduling/quartz/CronTriggerBean.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2012 the original author or authors.
2+
* Copyright 2002-2013 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -47,7 +47,7 @@
4747
* Use Quartz 2.0's native {@code JobDetailImpl} class or the new Quartz 2.0
4848
* builder API instead. Alternatively, switch to Spring's {@link CronTriggerFactoryBean}
4949
* which largely is a drop-in replacement for this class and its properties and
50-
* consistently works against Quartz 1.x as well as Quartz 2.0/2.1.
50+
* consistently works against Quartz 1.x as well as Quartz 2.x.
5151
*
5252
* @author Juergen Hoeller
5353
* @since 18.02.2004

spring-context-support/src/main/java/org/springframework/scheduling/quartz/CronTriggerFactoryBean.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2012 the original author or authors.
2+
* Copyright 2002-2013 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -49,7 +49,7 @@
4949
* to automatically register a trigger for the corresponding JobDetail,
5050
* instead of registering the JobDetail separately.
5151
*
52-
* <p><b>NOTE:</b> This FactoryBean works against both Quartz 1.x and Quartz 2.0/2.1,
52+
* <p><b>NOTE:</b> This FactoryBean works against both Quartz 1.x and Quartz 2.x,
5353
* in contrast to the older {@link CronTriggerBean} class.
5454
*
5555
* @author Juergen Hoeller

spring-context-support/src/main/java/org/springframework/scheduling/quartz/JobDetailBean.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2012 the original author or authors.
2+
* Copyright 2002-2013 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -39,7 +39,7 @@
3939
* Use Quartz 2.0's native {@code JobDetailImpl} class or the new Quartz 2.0
4040
* builder API instead. Alternatively, switch to Spring's {@link JobDetailFactoryBean}
4141
* which largely is a drop-in replacement for this class and its properties and
42-
* consistently works against Quartz 1.x as well as Quartz 2.0/2.1.
42+
* consistently works against Quartz 1.x as well as Quartz 2.x.
4343
*
4444
* @author Juergen Hoeller
4545
* @since 18.02.2004

spring-context-support/src/main/java/org/springframework/scheduling/quartz/MethodInvokingJobDetailFactoryBean.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
* You need to implement your own Quartz Job as a thin wrapper for each case
6868
* where you want a persistent job to delegate to a specific service method.
6969
*
70-
* <p>Compatible with Quartz 1.8 as well as Quartz 2.0/2.1, as of Spring 4.0.
70+
* <p>Compatible with Quartz 1.8 as well as Quartz 2.0-2.2, as of Spring 4.0.
7171
*
7272
* @author Juergen Hoeller
7373
* @author Alef Arendsen

spring-context-support/src/main/java/org/springframework/scheduling/quartz/SchedulerAccessorBean.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
* Spring bean-style class for accessing a Quartz Scheduler, i.e. for registering jobs,
3030
* triggers and listeners on a given {@link org.quartz.Scheduler} instance.
3131
*
32-
* <p>Compatible with Quartz 1.8 as well as Quartz 2.0/2.1, as of Spring 4.0.
32+
* <p>Compatible with Quartz 1.8 as well as Quartz 2.0-2.2, as of Spring 4.0.
3333
*
3434
* @author Juergen Hoeller
3535
* @since 2.5.6

spring-context-support/src/main/java/org/springframework/scheduling/quartz/SchedulerFactoryBean.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
* automatically apply to Scheduler operations performed within those scopes.
7575
* Alternatively, you may add transactional advice for the Scheduler itself.
7676
*
77-
* <p>Compatible with Quartz 1.8 as well as Quartz 2.0/2.1, as of Spring 4.0.
77+
* <p>Compatible with Quartz 1.8 as well as Quartz 2.0-2.2, as of Spring 4.0.
7878
*
7979
* @author Juergen Hoeller
8080
* @since 18.02.2004

spring-context-support/src/main/java/org/springframework/scheduling/quartz/SimpleTriggerBean.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2012 the original author or authors.
2+
* Copyright 2002-2013 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -46,7 +46,7 @@
4646
* Use Quartz 2.0's native {@code JobDetailImpl} class or the new Quartz 2.0
4747
* builder API instead. Alternatively, switch to Spring's {@link SimpleTriggerFactoryBean}
4848
* which largely is a drop-in replacement for this class and its properties and
49-
* consistently works against Quartz 1.x as well as Quartz 2.0/2.1.
49+
* consistently works against Quartz 1.x as well as Quartz 2.x.
5050
*
5151
* @author Juergen Hoeller
5252
* @since 18.02.2004

spring-context-support/src/main/java/org/springframework/scheduling/quartz/SimpleTriggerFactoryBean.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2002-2012 the original author or authors.
2+
* Copyright 2002-2013 the original author or authors.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -49,7 +49,7 @@
4949
* to automatically register a trigger for the corresponding JobDetail,
5050
* instead of registering the JobDetail separately.
5151
*
52-
* <p><b>NOTE:</b> This FactoryBean works against both Quartz 1.x and Quartz 2.0/2.1,
52+
* <p><b>NOTE:</b> This FactoryBean works against both Quartz 1.x and Quartz 2.x,
5353
* in contrast to the older {@link SimpleTriggerBean} class.
5454
*
5555
* @author Juergen Hoeller

spring-context-support/src/main/java/org/springframework/scheduling/quartz/SpringBeanJobFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
* as bean property values. If no matching bean property is found, the entry
3838
* is by default simply ignored. This is analogous to QuartzJobBean's behavior.
3939
*
40-
* <p>Compatible with Quartz 1.8 as well as Quartz 2.0/2.1, as of Spring 4.0.
40+
* <p>Compatible with Quartz 1.8 as well as Quartz 2.0-2.2, as of Spring 4.0.
4141
*
4242
* @author Juergen Hoeller
4343
* @since 2.0

0 commit comments

Comments
 (0)