]> git.mxchange.org Git - jjobs-ejb.git/commitdiff
Please cherry-pick:
authorRoland Häder <roland@mxchange.org>
Thu, 16 Apr 2020 20:09:49 +0000 (22:09 +0200)
committerRoland Häder <roland@mxchange.org>
Fri, 17 Apr 2020 16:42:10 +0000 (18:42 +0200)
- method names have been updated in business opening times

Signed-off-by: Roland Häder <roland@mxchange.org>
src/java/org/mxchange/jjobs/enterprise/BaseJobsEnterpriseBean.java

index 9ad42fbe1c58a9da0eb96090d456fdd5723eb3d8..e98e89718e2b6aecbcbc656b039d57c5f7a90a48 100644 (file)
@@ -509,13 +509,13 @@ public abstract class BaseJobsEnterpriseBean extends BaseEnterpriseBean {
                // 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"); //NOI18N
                        }
 
                        // Set created timestamp
-                       openingTime.setOpeningCreated(new Date());
+                       openingTime.setOpeningTimeEntryCreated(new Date());
                }
        }