]> git.mxchange.org Git - pizzaservice-war.git/commitdiff
Please cherry-pick:
authorRoland Häder <roland@mxchange.org>
Sat, 19 Aug 2017 13:19:25 +0000 (15:19 +0200)
committerRoland Häder <roland@mxchange.org>
Sat, 19 Aug 2017 13:38:14 +0000 (15:38 +0200)
- notifying a RequestScoped (partly including ViewScoped) bean about a locale
  change will not last long, better is to get the then changed locale from the
  view root again

Signed-off-by: Roland Häder <roland@mxchange.org>
src/java/org/mxchange/pizzaapplication/beans/user/PizzaAdminUserWebRequestBean.java
src/java/org/mxchange/pizzaapplication/beans/user/PizzaUserWebSessionBean.java

index d83d771d866a3dc1cd948a47c579b2e805edaa0c..c6ec6c484ddf31ab7230785fcd86dc52c59854b7 100644 (file)
@@ -25,6 +25,7 @@ import javax.enterprise.event.Event;
 import javax.enterprise.event.Observes;
 import javax.enterprise.inject.Any;
 import javax.faces.FacesException;
+import javax.faces.context.FacesContext;
 import javax.faces.view.facelets.FaceletException;
 import javax.inject.Inject;
 import javax.inject.Named;
@@ -32,7 +33,6 @@ import javax.naming.Context;
 import javax.naming.InitialContext;
 import javax.naming.NamingException;
 import org.mxchange.jcontacts.contact.Contact;
-import org.mxchange.jcoreee.events.locale.ObservableLocaleChangeEvent;
 import org.mxchange.jcoreee.utils.FacesUtils;
 import org.mxchange.jusercore.events.user.add.AdminAddedUserEvent;
 import org.mxchange.jusercore.events.user.add.ObservableAdminAddedUserEvent;
@@ -125,11 +125,6 @@ public class PizzaAdminUserWebRequestBean extends BasePizzaController implements
        @Any
        private Event<ObservableAdminDeletedUserEvent> deleteUserEvent;
 
-       /**
-        * Locale instance
-        */
-       private Locale locale;
-
        /**
         * Localization controller
         */
@@ -248,8 +243,11 @@ public class PizzaAdminUserWebRequestBean extends BasePizzaController implements
                newUser.setUserAccountStatus(UserAccountStatus.CONFIRMED);
                newUser.setUserProfileMode(ProfileMode.INVISIBLE);
 
+               // Get locale from view-root
+               Locale locale = FacesContext.getCurrentInstance().getViewRoot().getLocale();
+
                // Copy user locale
-               newUser.setUserLocale(this.getLocale());
+               newUser.setUserLocale(locale);
 
                // Init instance
                Contact userContact;
@@ -359,26 +357,6 @@ public class PizzaAdminUserWebRequestBean extends BasePizzaController implements
                this.setUser(event.getCreatedUser());
        }
 
-       /**
-        * Observer method for events being fired when the application's locale has
-        * been changed.
-        * <p>
-        * @param event Event being fired
-        */
-       public void afterLocaleChangeEvent (@Observes final ObservableLocaleChangeEvent event) {
-               // Is the parameter valid?
-               if (null == event) {
-                       // Throw NPE
-                       throw new NullPointerException("event is null");
-               } else if (event.getLocale() == null) {
-                       // Throw NPE again
-                       throw new NullPointerException("event.locale is null");
-               }
-
-               // Set it here
-               this.setLocale(event.getLocale());
-       }
-
        /**
         * Event observer for new user registrations
         * <p>
@@ -795,24 +773,6 @@ public class PizzaAdminUserWebRequestBean extends BasePizzaController implements
                this.setUserName(null);
        }
 
-       /**
-        * Getter for locale instance
-        * <p>
-        * @return Locale instance
-        */
-       private Locale getLocale () {
-               return this.locale;
-       }
-
-       /**
-        * Setter for locale instance
-        * <p>
-        * @param locale Locale instance
-        */
-       private void setLocale (final Locale locale) {
-               this.locale = locale;
-       }
-
        /**
         * Checks if same password is entered and that they are not empty.
         * <p>
index 1684db96ec2cbabf12dd7019d7ac5da8e34747f4..677c421c95071a24f584c3b0c497aaf4ba342856 100644 (file)
@@ -1060,6 +1060,7 @@ public class PizzaUserWebSessionBean extends BasePizzaController implements Pizz
                // - other data
                this.clearUserName();
                this.clearUserPasswords();
+               this.setLocale(null);
        }
 
        /**