| java.lang.Object org.kuali.module.gl.service.impl.RunDateServiceImpl
RunDateServiceImpl | public class RunDateServiceImpl implements RunDateService(Code) | | The default implementation of RunDateService
|
Inner Class :protected class CutoffTime | |
isCurrentDateBeforeCutoff | protected boolean isCurrentDateBeforeCutoff(Calendar currentCal, CutoffTime cutoffTime)(Code) | | Determines if the given calendar time is before the given cutoff time
Parameters: currentCal - the current time Parameters: cutoffTime - the "start of the day" cut off time true if the current time is before the cutoff, false otherwise |
parseCutoffTime | protected CutoffTime parseCutoffTime(String cutoffTime)(Code) | | Parses a String representation of the cutoff time
Parameters: cutoffTime - the cutoff time String to parse a record holding the cutoff time |
retrieveCutoffTimeValue | protected String retrieveCutoffTimeValue()(Code) | | Retrieves the cutoff time from a repository.
a time of day in the format "HH:mm:ss", where HH, mm, ss are defined in the java.text.SimpleDateFormat class. Inparticular, 0 <= hour <= 23, 0 <= minute <= 59, and 0 <= second <= 59 |
|
|