Hi, I'm trying to use a CronTrigger in combination with JobChainingJoblistener. The program currently loops through N number of stations, which creates a job for every station. The job1 and job2 are chained. Job1 executes based on the CRON and than Job2 follows. job = new JobDetail( "stage1.job." + station, "naifr", NaifrStage1Job.class ); //SimpleTrigger trigger = new SimpleTrigger( "stage1.Trigger." + station, ...