DateTime currentDate = new DateTime();
return currentDate.isBefore(this.getBeginningDateTime());
}
public DateTime getBeginningDateTime() {
HourMinuteSecond begin = this.getBeginningDateHourMinuteSecond();
YearMonthDay yearMonthDay = this.getDayDateYearMonthDay();
return new DateTime(yearMonthDay.getYear(), yearMonthDay.getMonthOfYear(), yearMonthDay.getDayOfMonth(), begin.getHour(),
begin.getMinuteOfHour(), 0, 0);
}