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

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

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

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

/**
 * This interface provides full access to the clock
 */
public interface Clock extends ClockReader {

  void setCurrentTime(Date currentTime);

  void setCurrentCalendar(Calendar currentTime);
  
  void reset();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy