]> git.mxchange.org Git - jjobs-war.git/blob - src/java/org/mxchange/jjobs/converter/fax/JobsFaxNumberConverter.java
5b5e6812ba5351b7543d96f0007b846d11ff2894
[jjobs-war.git] / src / java / org / mxchange / jjobs / converter / fax / JobsFaxNumberConverter.java
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.jjobs.converter.fax;
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.jphone.exceptions.PhoneEntityNotFoundException;
29 import org.mxchange.jphone.phonenumbers.fax.DialableFaxNumber;
30 import org.mxchange.jphone.phonenumbers.phone.PhoneSessionBeanRemote;
31
32 /**
33  * Converter for fax id <-> valid fax number instance
34  * <p>
35  * @author Roland Häder<roland@mxchange.org>
36  */
37 @FacesConverter (value = "FaxNumberConverter")
38 public class JobsFaxNumberConverter implements Converter<DialableFaxNumber> {
39
40         /**
41          * Phone EJB
42          */
43         private static PhoneSessionBeanRemote PHONE_BEAN;
44
45         /**
46          * Default constructor
47          */
48         public JobsFaxNumberConverter () {
49         }
50
51         @Override
52         public DialableFaxNumber getAsObject (final FacesContext context, final UIComponent component, final String submittedValue) {
53                 // Log message
54                 // @TODO Not possible here: this.loggerBeanLocal.logTrace(MessageFormat.format("{0}.getAsObject: context={1},component={2},submittedValue={3} - CALLED!", this.getClass().getSimpleName(), context, component, submittedValue)); //NOI18N
55
56                 // Is the value null or empty?
57                 if ((null == submittedValue) || (submittedValue.trim().isEmpty())) {
58                         // Warning message
59                         // @TODO Not possible here: this.loggerBeanLocal.logWarning(MessageFormat.format("{0}.getAsObject(): submittedValue is null or empty - EXIT!", this.getClass().getSimpleName())); //NOI18N
60
61                         // Return null
62                         return null;
63                 }
64
65                 // Is the bean there?
66                 // @TODO Requires this synchronization or is it (sync) confusing the container?
67                 if (null == JobsFaxNumberConverter.PHONE_BEAN) {
68                         // Try to get it
69                         try {
70                                 // Get initial context
71                                 Context initialContext = new InitialContext();
72
73                                 // ... and user controller
74                                 JobsFaxNumberConverter.PHONE_BEAN = (PhoneSessionBeanRemote) initialContext.lookup("java:global/jjobs-ejb/phone!org.mxchange.jphone.phonenumbers.phone.PhoneSessionBeanRemote"); //NOI18N
75                         } catch (final NamingException ex) {
76                                 // Continue to throw it
77                                 throw new RuntimeException(MessageFormat.format("context.lookup() failed: {0}", ex.getMessage()), ex); //NOI18N
78                         }
79                 }
80
81                 // Init instance
82                 DialableFaxNumber faxNumber = null;
83
84                 try {
85                         // Try to parse the value as long
86                         Long faxNumberId = Long.valueOf(submittedValue);
87
88                         // Log message
89                         // @TODO Not possible here: this.loggerBeanLocal.logDebug(MessageFormat.format("{0}.getAsObject: faxNumberId={1}", this.getClass().getSimpleName(), faxNumberId)); //NOI18N
90                         // Try to get mobile instance from it
91                         faxNumber = JobsFaxNumberConverter.PHONE_BEAN.findFaxNumberById(faxNumberId);
92                 } catch (final NumberFormatException ex) {
93                         // Throw again
94                         throw new ConverterException(ex);
95                 } catch (final PhoneEntityNotFoundException ex) {
96                         // Debug message
97                         // @TODO Not possible here: this.loggerBeanLocal.logDebug(MessageFormat.format("{0}.getAsObject(): Exception: {1} - Returning null ...", this.getClass().getSimpleName(), ex)); //NOI18N
98                 }
99
100                 // Log message
101                 // @TODO Not possible here: this.loggerBeanLocal.logTrace(MessageFormat.format("{0}.getAsObject: faxNumber={1} - EXIT!", this.getClass().getSimpleName(), faxNumber)); //NOI18N
102                 // Return it
103                 return faxNumber;
104         }
105
106         @Override
107         public String getAsString (final FacesContext context, final UIComponent component, final DialableFaxNumber value) {
108                 // Is the object null?
109                 if ((null == value) || (String.valueOf(value).isEmpty())) {
110                         // Is null
111                         return ""; //NOI18N
112                 }
113
114                 // Return id number
115                 return String.valueOf(value.getPhoneId());
116         }
117
118 }