Say i have job which needs to be executed at fixed times in a day like below, "05:00, 06:10, 07:30, 08:15, 09:05, 10:35"
How could i build a Trigger for this in Quartz ?
I couldnt find the way to achieve this out-of-the-box.
I see two ways to solve your problem:
The most obvious and easy way to set the unusual scheduling for you job is to combine several triggers. Quartz allows to set as much triggers as you want for single JobDetail.
It is more complicated way, applicable only if you must use only one trigger.
You could implement org.quartz.Trigger
interface or any subinterfaces to set yourown rules.