Exemplo n.º 1
0
 /**
  * This method changes the scheduling pattern of a task.
  *
  * @param id The ID assigned to the previously scheduled task.
  * @param schedulingPattern The new scheduling pattern for the task.
  * @throws InvalidPatternException If the supplied pattern is not valid.
  */
 public void reschedule(String id, String schedulingPattern) throws InvalidPatternException {
   reschedule(id, new SchedulingPattern(schedulingPattern));
 }