Hi
I am trying to schedule a quartz job but do not see any item in the combo box to select from.
Here is my Job class:
public class jobWorkflowUpdateOriginalDoc implements Job {
//private static final Logger log = LoggerFactory.getLogger(SampleJob.class);
@Autowired
private InteaccMainWorkflowServiceBean inteaccMainWorkflowServiceBean;
@Override
public void execute(JobExecutionContext context) throws JobExecutionException {
//log.info("Sample job is executed");
inteaccMainWorkflowServiceBean.workflowUpdateOriginalDocStatus();
}
}
Can someone point out where is the problem?