Update Quartz links in reference and Javadoc

Issue: SPR-8915
This commit is contained in:
Chris Beams
2012-01-30 15:22:44 +01:00
parent 87a021d5c9
commit f3c3babfdf
3 changed files with 6 additions and 6 deletions

View File

@@ -133,7 +133,7 @@ public class MethodInvokingJobDetailFactoryBean extends ArgumentConvertingMethod
* fashion. The behavior when one does not want concurrent jobs to be
* executed is realized through adding the {@link StatefulJob} interface.
* More information on stateful versus stateless jobs can be found
* <a href="http://www.opensymphony.com/quartz/tutorial.html#jobsMore">here</a>.
* <a href="http://www.quartz-scheduler.org/documentation/quartz-2.1.x/tutorials/tutorial-lesson-03">here</a>.
* <p>The default setting is to run jobs concurrently.
*/
public void setConcurrent(boolean concurrent) {

View File

@@ -2,7 +2,7 @@
/**
*
* Support classes for the open source scheduler
* <a href="http://www.opensymphony.com/quartz">Quartz</a>,
* <a href="http://quartz-scheduler.org">Quartz</a>,
* allowing to set up Quartz Schedulers, JobDetails and
* Triggers as beans in a Spring context. Also provides
* convenience classes for implementing Quartz Jobs.