Update Quartz links in reference and Javadoc

Issue: SPR-8915
master
Chris Beams 13 years ago
parent 87a021d5c9
commit f3c3babfdf
  1. 2
      org.springframework.context.support/src/main/java/org/springframework/scheduling/quartz/MethodInvokingJobDetailFactoryBean.java
  2. 2
      org.springframework.context.support/src/main/java/org/springframework/scheduling/quartz/package-info.java
  3. 8
      spring-framework-reference/src/scheduling.xml

@ -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) {

@ -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.

@ -20,7 +20,7 @@
<para>Spring also features integration classes for supporting scheduling
with the <classname>Timer</classname>, part of the JDK since 1.3, and the
Quartz Scheduler (<ulink
url="http://www.opensymphony.com/quartz/"></ulink>). Both of those
url="http://quartz-scheduler.org"></ulink>). Both of those
schedulers are set up using a <interfacename>FactoryBean</interfacename>
with optional references to <classname>Timer</classname> or
<classname>Trigger</classname> instances, respectively. Furthermore, a
@ -640,13 +640,13 @@ public class SampleBeanInititalizer {
</section>
<section id="scheduling-quartz">
<title>Using the OpenSymphony Quartz Scheduler</title>
<title>Using the Quartz Scheduler</title>
<para>Quartz uses <classname>Trigger</classname>,
<classname>Job</classname> and <classname>JobDetail</classname> objects to
realize scheduling of all kinds of jobs. For the basic concepts behind
Quartz, have a look at <ulink
url="http://www.opensymphony.com/quartz"></ulink>. For convenience
url="http://quartz-scheduler.org"></ulink>. For convenience
purposes, Spring offers a couple of classes that simplify the usage of
Quartz within Spring-based applications.</para>
@ -930,4 +930,4 @@ public class ExampleJob extends QuartzJobBean {
&lt;/bean&gt;</programlisting>
</section>
</section>
</chapter>
</chapter>

Loading…
Cancel
Save