I have scenario to implement recurrence functionality by using Quartz Scheduler. The end user will give an input like Week Days (Monday to Friday) or Month(January to December) or Day (1 to 31),Start Date and Recurrence. Example : Week Days : Tuesday or Month : January or Day : 19 Start Date : 01/19/2015 Recurrence :4
In the above example, if user is selected weekdays as Tuesday, start date and recurrence. Hence Quartz Job should run 4 times i.e Tuesday,Wednesday,Thursday and Friday.
How can I achieve recurrence functionality by using quart scheduler?