Use Quartz Scheduler in IBM Domino Application
问题 I'm very new to Quartz, but know 3 simple things which you have to have in order to make it work. These are jobs, triggers and scheduler. Now, in our domino application we have to use it for refreshing a token. I've created 3 basic classes for it. The job: public class RefreshEGRZTokenJob implements Job { public void execute(JobExecutionContext arg0) throws JobExecutionException { System.out.println("stub for refreshing a token"); } } The trigger and something like main : public class