1 17 18 21 package org.quartz.simpl; 22 23 import java.util.Date ; 24 25 import org.quartz.SchedulerConfigException; 26 import org.quartz.spi.TimeBroker; 27 28 49 public class SimpleTimeBroker implements TimeBroker { 50 51 58 59 64 public Date getCurrentTime() { 65 return new Date (); 66 } 67 68 public void initialize() throws SchedulerConfigException { 69 } 71 72 public void shutdown() { 73 } 75 76 } 77 | Popular Tags |