]> git.mxchange.org Git - addressbook-war.git/blob
2c6046d46401fb653d70b73c78183921bee83792
[addressbook-war.git] /
1 /*
2  * Copyright (C) 2016, 2017 Roland Häder
3  *
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.
8  *
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.
13  *
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/>.
16  */
17 package org.mxchange.addressbook.converter.businesscontact;
18
19 import java.text.MessageFormat;
20 import javax.faces.component.UIComponent;
21 import javax.faces.context.FacesContext;
22 import javax.faces.convert.Converter;
23 import javax.faces.convert.ConverterException;
24 import javax.faces.convert.FacesConverter;
25 import javax.naming.Context;
26 import javax.naming.InitialContext;
27 import javax.naming.NamingException;
28 import org.mxchange.jcontacts.contact.Contact;
29 import org.mxchange.jcontactsbusiness.BusinessContact;
30 import org.mxchange.jcontactsbusiness.BusinessContactSessionBeanRemote;
31 import org.mxchange.jcontactsbusiness.exceptions.BusinessContactNotFoundException;
32
33 /**
34  * Converter for contact id <-> valid business contact instance
35  * <p>
36  * @author Roland Häder<roland@mxchange.org>
37  */
38 @FacesConverter (value = "BusinessContactConverter")
39 public class AddressbookBusinessContactConverter implements Converter {
40
41         /**
42          * Business contact EJB
43          */
44         private BusinessContactSessionBeanRemote businessContactBean;
45
46         /**
47          * Initialization of this converter
48          */
49         public AddressbookBusinessContactConverter () {
50         }
51
52         @Override
53         public Object getAsObject (final FacesContext context, final UIComponent component, final String submittedValue) {
54                 // Is the value null or empty?
55                 if ((null == submittedValue) || (submittedValue.trim().isEmpty())) {
56                         // Warning message
57                         // @TODO Not working with JNDI (no remote interface) this.loggerBeanLocal.logWarning(MessageFormat.format("{0}.getAsObject(): submittedValue is null or empty - EXIT!", this.getClass().getSimpleName())); //NOI18N
58
59                         // Return null
60                         return null;
61                 }
62
63                 synchronized (this) {
64                         // Is the EJB instanciated?
65                         if (null == this.businessContactBean) {
66                                 // Try to get it
67                                 try {
68                                         // Get initial context
69                                         Context initialContext = new InitialContext();
70
71                                         // ... and user controller
72                                         this.businessContactBean = (BusinessContactSessionBeanRemote) initialContext.lookup("java:global/addressbook-ejb/businessContact!org.mxchange.jcontactsbusiness.BusinessContactSessionBeanRemote"); //NOI18N
73                                 } catch (final NamingException ex) {
74                                         // Continue to throw it
75                                         throw new ConverterException(MessageFormat.format("initialContext.lookup() failed: {0}", ex.getMessage()), ex); //NOI18N
76                                 }
77                         }
78                 }
79
80                 // Init instance
81                 BusinessContact businessContact = null;
82
83                 try {
84                         // Try to parse the value as long
85                         Long contactId = Long.valueOf(submittedValue);
86
87                         // Try to get user instance from it
88                         businessContact = this.businessContactBean.findBusinessContactById(contactId);
89                 } catch (final NumberFormatException ex) {
90                         // Throw again
91                         throw new ConverterException(ex);
92                 } catch (final BusinessContactNotFoundException ex) {
93                         // Debug message
94                         // @TODO Not working with JNDI (no remote interface) this.loggerBeanLocal.logDebug(MessageFormat.format("{0}.getAsObject(): Exception: {1} - Returning null ...", this.getClass().getSimpleName(), ex)); //NOI18N
95                 }
96
97                 // Return it
98                 return businessContact;
99         }
100
101         @Override
102         public String getAsString (final FacesContext context, final UIComponent component, final Object value) {
103                 // Is the object null?
104                 if ((null == value) || ((String.valueOf(value)).isEmpty())) {
105                         // Is null
106                         return ""; //NOI18N
107                 } else if (!(value instanceof Contact)) {
108                         // Not same interface
109                         throw new IllegalArgumentException(MessageFormat.format("value {0} does not implement Contact.", value)); //NOI18N
110                 }
111
112                 // Return category id
113                 return String.valueOf(((BusinessContact) value).getBusinessContactId());
114         }
115
116 }