diff --git a/spring-context-support/src/main/java/org/springframework/scheduling/quartz/AdaptableJobFactory.java b/spring-context-support/src/main/java/org/springframework/scheduling/quartz/AdaptableJobFactory.java index 71f52a91ea..a4035dc86a 100644 --- a/spring-context-support/src/main/java/org/springframework/scheduling/quartz/AdaptableJobFactory.java +++ b/spring-context-support/src/main/java/org/springframework/scheduling/quartz/AdaptableJobFactory.java @@ -30,7 +30,7 @@ import org.springframework.util.ReflectionUtils; * JobFactory implementation that supports {@link java.lang.Runnable} * objects as well as standard Quartz {@link org.quartz.Job} instances. * - *

Compatible with Quartz 1.8 as well as Quartz 2.0/2.1, as of Spring 4.0. + *

Compatible with Quartz 1.8 as well as Quartz 2.0-2.2, as of Spring 4.0. * * @author Juergen Hoeller * @since 2.0 diff --git a/spring-context-support/src/main/java/org/springframework/scheduling/quartz/CronTriggerBean.java b/spring-context-support/src/main/java/org/springframework/scheduling/quartz/CronTriggerBean.java index 00988a7749..531d6ae336 100644 --- a/spring-context-support/src/main/java/org/springframework/scheduling/quartz/CronTriggerBean.java +++ b/spring-context-support/src/main/java/org/springframework/scheduling/quartz/CronTriggerBean.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2012 the original author or authors. + * Copyright 2002-2013 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -47,7 +47,7 @@ import org.springframework.util.Assert; * Use Quartz 2.0's native {@code JobDetailImpl} class or the new Quartz 2.0 * builder API instead. Alternatively, switch to Spring's {@link CronTriggerFactoryBean} * which largely is a drop-in replacement for this class and its properties and - * consistently works against Quartz 1.x as well as Quartz 2.0/2.1. + * consistently works against Quartz 1.x as well as Quartz 2.x. * * @author Juergen Hoeller * @since 18.02.2004 diff --git a/spring-context-support/src/main/java/org/springframework/scheduling/quartz/CronTriggerFactoryBean.java b/spring-context-support/src/main/java/org/springframework/scheduling/quartz/CronTriggerFactoryBean.java index 66741456fd..92d4e07d58 100644 --- a/spring-context-support/src/main/java/org/springframework/scheduling/quartz/CronTriggerFactoryBean.java +++ b/spring-context-support/src/main/java/org/springframework/scheduling/quartz/CronTriggerFactoryBean.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2012 the original author or authors. + * Copyright 2002-2013 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -49,7 +49,7 @@ import org.springframework.util.ReflectionUtils; * to automatically register a trigger for the corresponding JobDetail, * instead of registering the JobDetail separately. * - *

NOTE: This FactoryBean works against both Quartz 1.x and Quartz 2.0/2.1, + *

NOTE: This FactoryBean works against both Quartz 1.x and Quartz 2.x, * in contrast to the older {@link CronTriggerBean} class. * * @author Juergen Hoeller diff --git a/spring-context-support/src/main/java/org/springframework/scheduling/quartz/JobDetailBean.java b/spring-context-support/src/main/java/org/springframework/scheduling/quartz/JobDetailBean.java index 43998ffcdb..2d8e2a24db 100644 --- a/spring-context-support/src/main/java/org/springframework/scheduling/quartz/JobDetailBean.java +++ b/spring-context-support/src/main/java/org/springframework/scheduling/quartz/JobDetailBean.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2012 the original author or authors. + * Copyright 2002-2013 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -39,7 +39,7 @@ import org.springframework.context.ApplicationContextAware; * Use Quartz 2.0's native {@code JobDetailImpl} class or the new Quartz 2.0 * builder API instead. Alternatively, switch to Spring's {@link JobDetailFactoryBean} * which largely is a drop-in replacement for this class and its properties and - * consistently works against Quartz 1.x as well as Quartz 2.0/2.1. + * consistently works against Quartz 1.x as well as Quartz 2.x. * * @author Juergen Hoeller * @since 18.02.2004 diff --git a/spring-context-support/src/main/java/org/springframework/scheduling/quartz/MethodInvokingJobDetailFactoryBean.java b/spring-context-support/src/main/java/org/springframework/scheduling/quartz/MethodInvokingJobDetailFactoryBean.java index 9a42566bc2..b6533ac793 100644 --- a/spring-context-support/src/main/java/org/springframework/scheduling/quartz/MethodInvokingJobDetailFactoryBean.java +++ b/spring-context-support/src/main/java/org/springframework/scheduling/quartz/MethodInvokingJobDetailFactoryBean.java @@ -67,7 +67,7 @@ import org.springframework.util.ReflectionUtils; * You need to implement your own Quartz Job as a thin wrapper for each case * where you want a persistent job to delegate to a specific service method. * - *

Compatible with Quartz 1.8 as well as Quartz 2.0/2.1, as of Spring 4.0. + *

Compatible with Quartz 1.8 as well as Quartz 2.0-2.2, as of Spring 4.0. * * @author Juergen Hoeller * @author Alef Arendsen diff --git a/spring-context-support/src/main/java/org/springframework/scheduling/quartz/SchedulerAccessorBean.java b/spring-context-support/src/main/java/org/springframework/scheduling/quartz/SchedulerAccessorBean.java index fb258125ff..59f328736f 100644 --- a/spring-context-support/src/main/java/org/springframework/scheduling/quartz/SchedulerAccessorBean.java +++ b/spring-context-support/src/main/java/org/springframework/scheduling/quartz/SchedulerAccessorBean.java @@ -29,7 +29,7 @@ import org.springframework.beans.factory.ListableBeanFactory; * Spring bean-style class for accessing a Quartz Scheduler, i.e. for registering jobs, * triggers and listeners on a given {@link org.quartz.Scheduler} instance. * - *

Compatible with Quartz 1.8 as well as Quartz 2.0/2.1, as of Spring 4.0. + *

Compatible with Quartz 1.8 as well as Quartz 2.0-2.2, as of Spring 4.0. * * @author Juergen Hoeller * @since 2.5.6 diff --git a/spring-context-support/src/main/java/org/springframework/scheduling/quartz/SchedulerFactoryBean.java b/spring-context-support/src/main/java/org/springframework/scheduling/quartz/SchedulerFactoryBean.java index 2b96a9a129..6b6a03c62d 100644 --- a/spring-context-support/src/main/java/org/springframework/scheduling/quartz/SchedulerFactoryBean.java +++ b/spring-context-support/src/main/java/org/springframework/scheduling/quartz/SchedulerFactoryBean.java @@ -74,7 +74,7 @@ import org.springframework.util.CollectionUtils; * automatically apply to Scheduler operations performed within those scopes. * Alternatively, you may add transactional advice for the Scheduler itself. * - *

Compatible with Quartz 1.8 as well as Quartz 2.0/2.1, as of Spring 4.0. + *

Compatible with Quartz 1.8 as well as Quartz 2.0-2.2, as of Spring 4.0. * * @author Juergen Hoeller * @since 18.02.2004 diff --git a/spring-context-support/src/main/java/org/springframework/scheduling/quartz/SimpleTriggerBean.java b/spring-context-support/src/main/java/org/springframework/scheduling/quartz/SimpleTriggerBean.java index 37f480e3e4..1c0eebb42c 100644 --- a/spring-context-support/src/main/java/org/springframework/scheduling/quartz/SimpleTriggerBean.java +++ b/spring-context-support/src/main/java/org/springframework/scheduling/quartz/SimpleTriggerBean.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2012 the original author or authors. + * Copyright 2002-2013 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -46,7 +46,7 @@ import org.springframework.core.Constants; * Use Quartz 2.0's native {@code JobDetailImpl} class or the new Quartz 2.0 * builder API instead. Alternatively, switch to Spring's {@link SimpleTriggerFactoryBean} * which largely is a drop-in replacement for this class and its properties and - * consistently works against Quartz 1.x as well as Quartz 2.0/2.1. + * consistently works against Quartz 1.x as well as Quartz 2.x. * * @author Juergen Hoeller * @since 18.02.2004 diff --git a/spring-context-support/src/main/java/org/springframework/scheduling/quartz/SimpleTriggerFactoryBean.java b/spring-context-support/src/main/java/org/springframework/scheduling/quartz/SimpleTriggerFactoryBean.java index 31896c7ff4..84e39be1c1 100644 --- a/spring-context-support/src/main/java/org/springframework/scheduling/quartz/SimpleTriggerFactoryBean.java +++ b/spring-context-support/src/main/java/org/springframework/scheduling/quartz/SimpleTriggerFactoryBean.java @@ -1,5 +1,5 @@ /* - * Copyright 2002-2012 the original author or authors. + * Copyright 2002-2013 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -49,7 +49,7 @@ import org.springframework.util.ReflectionUtils; * to automatically register a trigger for the corresponding JobDetail, * instead of registering the JobDetail separately. * - *

NOTE: This FactoryBean works against both Quartz 1.x and Quartz 2.0/2.1, + *

NOTE: This FactoryBean works against both Quartz 1.x and Quartz 2.x, * in contrast to the older {@link SimpleTriggerBean} class. * * @author Juergen Hoeller diff --git a/spring-context-support/src/main/java/org/springframework/scheduling/quartz/SpringBeanJobFactory.java b/spring-context-support/src/main/java/org/springframework/scheduling/quartz/SpringBeanJobFactory.java index 79784aea0f..e2df838e5c 100644 --- a/spring-context-support/src/main/java/org/springframework/scheduling/quartz/SpringBeanJobFactory.java +++ b/spring-context-support/src/main/java/org/springframework/scheduling/quartz/SpringBeanJobFactory.java @@ -37,7 +37,7 @@ import org.springframework.util.ReflectionUtils; * as bean property values. If no matching bean property is found, the entry * is by default simply ignored. This is analogous to QuartzJobBean's behavior. * - *

Compatible with Quartz 1.8 as well as Quartz 2.0/2.1, as of Spring 4.0. + *

Compatible with Quartz 1.8 as well as Quartz 2.0-2.2, as of Spring 4.0. * * @author Juergen Hoeller * @since 2.0