in module-simple/src/main/java/domainapp/modules/simple/dom/so/SimpleObject.java [167:174]
public CalendarEvent toCalendarEvent() {
if (getLastCheckedIn() != null) {
long epochMillis = getLastCheckedIn().toEpochSecond(LocalTime.MIDNIGHT, ZoneOffset.systemDefault().getRules().getOffset(getLastCheckedIn().atStartOfDay())) * 1000L;
return new CalendarEvent(epochMillis, getCalendarName(), titleService.titleOf(this), getNotes());
} else {
return null;
}
}