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

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

There is a newer version: 7.1.0.M6
Show 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 - 2025 Weber Informatics LLC | Privacy Policy