2 * Copyright (C) 2017 - 2020 Free Software Foundation
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU Affero General Public License as
6 * published by the Free Software Foundation, either version 3 of the
7 * License, or (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU Affero General Public License for more details.
14 * You should have received a copy of the GNU Affero General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 package org.mxchange.jcontactsbusiness.model.headquarter;
19 import java.text.MessageFormat;
20 import java.util.Date;
21 import java.util.List;
23 import javax.ejb.Stateless;
24 import org.mxchange.jcontactsbusiness.exceptions.headquarter.HeadquarterAlreadyAddedException;
25 import org.mxchange.jcontactsbusiness.model.opening_time.OpeningTime;
26 import org.mxchange.jcountry.model.data.Country;
27 import org.mxchange.jfinancials.enterprise.BaseFinancialsEnterpriseBean;
28 import org.mxchange.jusercore.model.user.User;
31 * A stateless session bean for administrative branch office purposes
33 * @author Roland Häder<roland@mxchange.org>
35 @Stateless (name = "adminHeadquarter", description = "An administrative statless bean for handling branch office data (all)")
36 public class FinancialsAdminHeadquarterSessionBean extends BaseFinancialsEnterpriseBean implements AdminHeadquarterSessionBeanRemote {
41 private static final long serialVersionUID = 58_467_386_571_706L;
44 * General branch office bean
46 @EJB (lookup = "java:global/jfinancials-ejb/headquarter!org.mxchange.jcontactsbusiness.model.headquarter.HeadquarterSessionBeanRemote")
47 private HeadquarterSessionBeanRemote headquarterBean;
52 public FinancialsAdminHeadquarterSessionBean () {
53 // Call super constructor
58 public Headquarter addHeadquarter (final Headquarter headquarter) throws HeadquarterAlreadyAddedException {
60 this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.addHeadquarter(): headquarter={1} - CALLED!", this.getClass().getSimpleName(), headquarter)); //NOI18N
63 if (null == headquarter) {
65 throw new NullPointerException("headquarter is null"); //NOI18N
66 } else if (headquarter.getHeadquarterId() instanceof Long) {
68 throw new IllegalArgumentException("headquarter.branchId should not be set."); //NOI18N
69 } else if (this.isHeadquarterFound(headquarter)) {
70 // Already added, abort here
71 throw new HeadquarterAlreadyAddedException(headquarter);
74 // Add created timestamp
75 headquarter.setHeadquarterCreated(new Date());
77 // Is user instance set?
78 if (headquarter.getHeadquarterUserOwner() instanceof User) {
79 // Get managed instance back
80 final User managedUser = this.createManaged(headquarter.getHeadquarterUserOwner());
82 // Set it back in branch office
83 headquarter.setHeadquarterUserOwner(managedUser);
86 // Is user instance set?
87 if (headquarter.getHeadquarterCountry() instanceof Country) {
88 // Get managed instance back
89 final Country managedCountry = this.createManaged(headquarter.getHeadquarterCountry());
91 // Set it back in branch office
92 headquarter.setHeadquarterCountry(managedCountry);
95 // Set "created" timestamp on any number assigned
96 this.setAllPhoneEntriesCreated(headquarter);
99 final List<OpeningTime> openingTimes = headquarter.getHeadquarterOpeningTimes();
102 this.getLoggerBeanLocal().logDebug(MessageFormat.format("{0}.addHeadquarter(): headquarter.headquarterOpeningTimes={1}", this.getClass().getSimpleName(), openingTimes));
104 // Is opening times set and not empty?
105 if ((openingTimes instanceof List) && (!openingTimes.isEmpty())) {
106 // Add created timestamp for all times
107 this.setAllOpeningTimesCreated(openingTimes);
110 headquarter.setHeadquarterOpeningTimes(null);
114 this.getEntityManager().persist(headquarter);
117 this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.addHeadquarter(): headquarter.branchId={1} - EXIT!", this.getClass().getSimpleName(), headquarter.getHeadquarterId())); //NOI18N
119 // Return updated instance
124 * Checks if given branch office's address is already persisted. The whole
125 * (persisted) list is being loaded and each address is being matched
126 * against the given branch office's address.
128 * @param headquarter Headquarter office being checked
130 * @return Whether it has been found
132 private boolean isHeadquarterFound (final Headquarter headquarter) {
134 final List<Headquarter> headquarters = this.headquarterBean.fetchAllHeadquarters();
136 // Default is not found
137 boolean isFound = false;
139 // Check all single addresses
140 for (final Headquarter hq : headquarters) {
141 // Is the same address found?
142 if (Headquarters.isSameAddress(hq, headquarter)) {