cfc1f11c50e2e762524ce5005aaa646550cd611a.svn-base 467 B

12345678910111213141516
  1. package xin.glue.nui.G.G02;
  2. import org.quartz.JobExecutionContext;
  3. import com.posdata.glue.scheduling.PosQuartzJobBean;
  4. import com.posdata.glue.util.log.PosLog;
  5. import com.posdata.glue.util.log.PosLogFactory;
  6. public class SampleJob extends PosQuartzJobBean {
  7. protected PosLog log = PosLogFactory.getLogger(SampleJob.class);
  8. protected void executeJob(JobExecutionContext arg0) {
  9. // TODO Auto-generated method stub
  10. log.logInfo("execute sample job....");
  11. }
  12. }