I want to dynamically add triggers to a job, but can\'t find any helpful methods off of Scheduler
I though i would just be able to call the scheduleJob method an repetit
This post gives a hint, but the conclusion ( schedulerInstance.add(trigger) ) is not valid as of Quartz 2.01.
Instead use the following, after assinging the job to the trigger ( one way is using the TriggerBuilder's forJob method )
schedulerInstance.scheduleJob( newTrigger )