I'm using Quartz Scheduler v.1.8.0.
How do I get the cron expression which was assigned/attached to a Job and scheduled using CronTrigger? I have the job name and group name in this case. Though many Triggers can point to the same Job, in my case it is only one.
There is a method available in Scheduler class, Scheduler.getTriggersOfJob(jobName, groupName), but it returns only Trigger array.
Example cronexpression: 0 /5 10-20 * * ?
NOTE: Class CronTrigger extends Trigger