]> git.mxchange.org Git - addressbook-war.git/commitdiff
Continued with rewrite:
authorRoland Häder <roland@mxchange.org>
Mon, 23 May 2016 13:30:19 +0000 (15:30 +0200)
committerRoland Haeder <roland@mxchange.org>
Wed, 25 May 2016 18:37:46 +0000 (20:37 +0200)
- introduced showFacesMessage()
- rewrote to FacesMessage and not ugly exception 500 error
- rewrote more messages + fixed form ids to naming convention

src/java/org/mxchange/addressbook/beans/BaseAddressbookController.java
src/java/org/mxchange/addressbook/beans/contact/AddressbookContactWebSessionBean.java
src/java/org/mxchange/addressbook/beans/email_address/AddressbookEmailChangeWebSessionBean.java
src/java/org/mxchange/addressbook/beans/mobileprovider/AddressbookAdminMobileProviderWebRequestBean.java
src/java/org/mxchange/addressbook/beans/resendlink/AddressbookResendLinkWebSessionBean.java
web/WEB-INF/templates/admin/mobile_provider/admin_form_mobile_provider.tpl
web/admin/mobile_provider/admin_mobile_provider_list.xhtml
web/user/login_change_email_address.xhtml

index bee8b0ac22a5b6fbe71749c3e7d9ab787d467101..4b9c3ffc355d3f200496a08c57dcd019692d92ad 100644 (file)
@@ -17,6 +17,8 @@
 package org.mxchange.addressbook.beans;
 
 import java.io.Serializable;
+import java.text.MessageFormat;
+import javax.faces.application.FacesMessage;
 import javax.faces.context.FacesContext;
 
 /**
@@ -58,4 +60,19 @@ public abstract class BaseAddressbookController implements Serializable {
                return isEnabled;
        }
 
+       /**
+        * Shows a faces message for given causing exception. The message from the
+        * exception is being inserted into the message.
+        * <p>
+        * @param clientId Client id to send message to
+        * @param cause Causing exception
+        */
+       protected void showFacesMessage (final String clientId, final Throwable cause) {
+               // Trace message
+               System.out.println(MessageFormat.format("showFacesMessage: clientId={0},cause={1} - CALLED!", clientId, cause));
+
+               // Get context and add message
+               FacesContext.getCurrentInstance().addMessage(clientId, new FacesMessage(cause.getMessage()));
+       }
+
 }
index bf8d7ed6c3d5ca005e6859b4940527c284274bd8..adbda5c4895b090b87591f370a4b73139ad1e3bf 100644 (file)
@@ -544,7 +544,8 @@ public class AddressbookContactWebSessionBean extends BaseAddressbookController
                        throw new FaceletException("Not all required fields are set."); //NOI18N
                } else if (!this.userLoginController.ifCurrentPasswordMatches()) {
                        // Password not matching
-                       throw new FaceletException(new UserPasswordMismatchException(this.userLoginController.getLoggedInUser()));
+                       this.showFacesMessage("login_change_personal_form:currentPassword", new UserPasswordMismatchException(this.userLoginController.getLoggedInUser())); //NOI18N
+                       return ""; //NOI18N
                }
 
                // Get contact instance
index b27e3bfd0b67bf8e66a454931bca80d19c79f9fe..456052cf243d222a808e4f4b0b98ea6062a42ccd 100644 (file)
@@ -110,7 +110,8 @@ public class AddressbookEmailChangeWebSessionBean extends BaseAddressbookControl
                        throw new FaceletException("Email address 1/2 are mismatching."); //NOI18N
                } else if (!this.loginController.ifCurrentPasswordMatches()) {
                        // Password not matching
-                       throw new FaceletException(new UserPasswordMismatchException(this.loginController.getLoggedInUser()));
+                       this.showFacesMessage("login_change_email_address_form:currentPassword", new UserPasswordMismatchException(this.loginController.getLoggedInUser())); //NOI18N
+                       return ""; //NOI18N
                }
 
                // Get user instance
index 3ba0d243d96364431b86a5a936f6c0664fe74106..0b54fdca7adf8df4d9c6d0d3091c6e7065168ca5 100644 (file)
@@ -114,7 +114,8 @@ public class AddressbookAdminMobileProviderWebRequestBean extends BaseAddressboo
                // Is the provider already created?
                if (this.isMobileProviderCreated(mobileProvider)) {
                        // Then throw exception
-                       throw new FaceletException(new MobileProviderAlreadyAddedException(mobileProvider));
+                       this.showFacesMessage("add_mobile_provider_form:providerDialPrefix", new MobileProviderAlreadyAddedException(mobileProvider)); //NOI18N
+                       return ""; //NOI18N
                }
 
                // Init variable
index b8ec7c650c1be06849592e01f4e54b068b3e4d6b..c2c086536b64831c08979c19d1e7b09a777133b4 100644 (file)
@@ -102,17 +102,19 @@ public class AddressbookResendLinkWebSessionBean extends BaseAddressbookControll
                        // Is the email address really not used?
                        user = this.userController.lookupUserByEmailAddress(this.getEmailAddress());
                } catch (final UserEmailAddressNotFoundException ex) {
-                       // Not found, should not happen as the registeredvalidator should find it
+                       // Not found, should not happen as the registered validator should find it
                        throw new FaceletException(MessageFormat.format("this.emailAddress={0} should be resolveable into User instance.", this.getEmailAddress()), ex); //NOI18N
                }
 
                // Is the user account already confirmed?
                if (user.getUserAccountStatus() == UserAccountStatus.CONFIRMED) {
                        // Then abort here
-                       throw new FaceletException(new UserStatusConfirmedException(user));
+                       this.showFacesMessage("form_resend_link:resendEmailAddress", new UserStatusConfirmedException(user)); //NOI18N
+                       return ""; //NOI18N
                } else if (user.getUserAccountStatus() == UserAccountStatus.LOCKED) {
                        // User account is locked
-                       throw new FaceletException(new UserStatusLockedException(user));
+                       this.showFacesMessage("form_resend_link:resendEmailAddress", new UserStatusLockedException(user)); //NOI18N
+                       return ""; //NOI18N
                } else if (user.getUserConfirmKey() == null) {
                        // Status is UNCONFIRMED but confirmation key is NULL
                        throw new NullPointerException("user.userConfirmKey is null"); //NOI18N
index 9bbaf3d1f10c9bcaadaea76a768eff9f360c1259..e6a87ddb1fdd212d0f9b0eb7dd3764ce8f3151f0 100644 (file)
@@ -27,6 +27,8 @@
                                <div class="clear"></div>
                        </div>
 
+                       <h:message for="providerDialPrefix" errorClass="errors" fatalClass="errors" warnClass="errors" />
+
                        <div class="table_row">
                                <div class="table_left_medium">
                                        <h:outputLabel for="providerMailPattern" value="#{msg.ADMIN_ENTER_MOBILE_PROVIDER_PATTERN}" />
index dbd277520f138b8e95d2d9c5b8f42636fe0c0a8f..fdd1d473bed5e0fc4567d73cea93a4ed0148bbb4 100644 (file)
@@ -62,7 +62,7 @@
                                </h:column>
                        </h:dataTable>
 
-                       <h:form id="form_add_mobile_provider">
+                       <h:form id="add_mobile_provider_form">
                                <div class="table_medium">
                                        <div class="table_header">
                                                <h:outputText value="#{msg.ADMIN_ADD_MOBILE_PROVIDER_TITLE}" />
index ed55ac8bcb83ad1eb220b94b958bc3916782db34..475d96f61c69ec5a2086a818a84d7011ac8554b6 100644 (file)
@@ -22,7 +22,7 @@
                                                #{msg.LOGIN_CHANGE_EMAIL_ADDRESS_TITLE}
                                        </div>
 
-                                       <h:form id="login_form">
+                                       <h:form id="login_change_email_address_form">
                                                <div class="para">
                                                        <fieldset id="change_email">
                                                                <legend title="#{msg.LOGIN_CHANGE_EMAIL_LEGEND_TITLE}">#{msg.LOGIN_CHANGE_EMAIL_LEGEND}</legend>