Right now I'm searching for functionality to get job keys by job name in Quartz library.
I see that Scheduler
has method to get job keys by group name using GroupMatcher<JobKey>
also Quartz
has NameMatcher
which can be user in same way as GroupMatcher
Set<JobKey> getJobKeys(NameMatcher<JobKey> matcher) throws SchedulerException;
Do you know is this functionality already exists in Quartz library?