- method names have been updated in business opening times
Signed-off-by: Roland Häder <roland@mxchange.org>
// Walk through whole list
for (final OpeningTime openingTime : openingTimes) {
// Id should not be set
- if (openingTime.getOpeningId() != null) {
+ if (openingTime.getOpeningTimeId() != null) {
// Abort here
throw new IllegalStateException("openingTime.openingId is not null");
}
// Set created timestamp
- openingTime.setOpeningCreated(new Date());
+ openingTime.setOpeningTimeEntryCreated(new Date());
}
}