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.

...

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

Take a look at sample job class.

Syncope >= 2.0.0

Quartz 2.2.X is used.

A scheduled task job is a Java implementation of org.apache.syncope.core.provisioning.api.job.SchedTaskJobDelegate interface.

In order to simplify the implementation, the abstract Java class AbstractTaskJobDelegate has been provided: everything is set up for @Transactional support.

Take a look at sample job delegate class.

Deploy

A job class can be deployed:

...