All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.activiti.engine.runtime.ClockReader Maven / Gradle / Ivy

The newest version!
package org.activiti.engine.runtime;

import java.util.Calendar;
import java.util.Date;
import java.util.TimeZone;

/**
 * This interface provides clock reading functionality
 */
public interface ClockReader {

  Date getCurrentTime();

  Calendar getCurrentCalendar();
  
  Calendar getCurrentCalendar(TimeZone timeZone);
  
  TimeZone getCurrentTimeZone();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy