Skip to content

Commit

Permalink
Update Quartz links in reference and Javadoc
Browse files Browse the repository at this point in the history
Issue: SPR-8915
  • Loading branch information
cbeams committed Jan 31, 2012
1 parent 87a021d commit f3c3bab
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ public void setGroup(String group) {
* 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) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
8 changes: 4 additions & 4 deletions spring-framework-reference/src/scheduling.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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>

Expand Down Expand Up @@ -930,4 +930,4 @@ public class ExampleJob extends QuartzJobBean {
&lt;/bean&gt;</programlisting>
</section>
</section>
</chapter>
</chapter>

0 comments on commit f3c3bab

Please sign in to comment.