- package xin.glue.nui.G.G02;
- import org.quartz.JobExecutionContext;
- import com.posdata.glue.scheduling.PosQuartzJobBean;
- import com.posdata.glue.util.log.PosLog;
- import com.posdata.glue.util.log.PosLogFactory;
- public class SampleJob extends PosQuartzJobBean {
- protected PosLog log = PosLogFactory.getLogger(SampleJob.class);
- protected void executeJob(JobExecutionContext arg0) {
- // TODO Auto-generated method stub
- log.logInfo("execute sample job....");
- }
- }
|