mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

neil_a_wilson
30.11.2007 f386801829fe0295a232ad8af4785ba60d2be044
opendj-sdk/opends/src/server/org/opends/server/backends/task/TaskBackend.java
@@ -1693,5 +1693,42 @@
    return scheduledTaskParentDN;
  }
  /**
   * Retrieves the scheduled task for the entry with the provided DN.
   *
   * @param  taskEntryDN  The DN of the entry for the task to retrieve.
   *
   * @return  The requested task, or {@code null} if there is no task with the
   *          specified entry DN.
   */
  public Task getScheduledTask(DN taskEntryDN)
  {
    assert debugEnter(CLASS_NAME, "getScheduledTask",
                      String.valueOf(taskEntryDN));
    return taskScheduler.getScheduledTask(taskEntryDN);
  }
  /**
   * Retrieves the recurring task for the entry with the provided DN.
   *
   * @param  taskEntryDN  The DN of the entry for the recurring task to
   *                      retrieve.
   *
   * @return  The requested recurring task, or {@code null} if there is no task
   *          with the specified entry DN.
   */
  public RecurringTask getRecurringTask(DN taskEntryDN)
  {
    assert debugEnter(CLASS_NAME, "getScheduledTask",
                      String.valueOf(taskEntryDN));
    return taskScheduler.getRecurringTask(taskEntryDN);
  }
}