Class TransactionLicensingJob

All Implemented Interfaces:
org.quartz.InterruptableJob, org.quartz.Job

public class TransactionLicensingJob extends BaseJob
Publishes transaction audit data.
Since:
4.3.4
  • Field Details

    • JOB_NAME

      public static final String JOB_NAME
      The Job name
      See Also:
    • CRON_EXPRESSION

      public static final String CRON_EXPRESSION
      The schedule - translates to "every night at 12:30am"
      See Also:
    • IS_LICENSING_JOB_ENABLED

      public static final boolean IS_LICENSING_JOB_ENABLED
      The boolean value to check if the Job is enabled
  • Constructor Details

    • TransactionLicensingJob

      public TransactionLicensingJob()
  • Method Details

    • executeJob

      public void executeJob()
      Description copied from class: AbstractJob
      Subclasses should override this method to provide their functionality.

      A DataContext object will be bound to the thread executing this task. Any uncommitted changes to the DataContext will be automatically rolled back when this method completes.

      Specified by:
      executeJob in class AbstractJob