Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Note
titleVersion Warning

The content below is for Apache Syncope <= 1.2 - for later versions the Reference Guide is available.

Table of Contents
styledecimal

Introduction

A scheduled task job class is a Java class that implements the logic of a scheduled task.

...

In order to simplify the implementation, the abstract Java class AbstractJob has been provided. AbstractJob implements StatefulJob and also takes care of all necessary settings.

Take a look at sample job class.

Syncope >= 1.1.0

Quartz 2.1.X is used.

...

In order to simplify the implementation, the abstract Java class AbstractJob AbstractTaskJob has been provided. AbstractJob implements StatefulJob, AbstractTaskJob is annotated with @DisallowConcurrentExecution and also takes care of all necessary settings.

If you need @Transactional support, since Syncope >= 1.1.3 AbstractTransactionalTaskJob should be extended instead.

Take a look at sample job class.

Deploy

A job class can be deployed:

...