]> git.mxchange.org Git - pizzaservice-war.git/commitdiff
no recruiter here
authorRoland Häder <roland@mxchange.org>
Sun, 23 Apr 2017 12:08:13 +0000 (14:08 +0200)
committerRoland Häder <roland@mxchange.org>
Sun, 23 Apr 2017 12:14:32 +0000 (14:14 +0200)
Signed-off-by: Roland Häder <roland@mxchange.org>
src/java/org/mxchange/localization/bundle_en_US.properties
src/java/org/mxchange/pizzaapplication/beans/helper/PizzaWebRequestHelperBean.java
src/java/org/mxchange/pizzaapplication/beans/user/PizzaUserWebSessionBean.java

index 5695abbc8924455e94d9a041af73ff260ddd4d1f..02d9fa1f939d993cd5bf785d9d3f0a9db0267e4d 100644 (file)
@@ -433,7 +433,7 @@ GUEST_AGREE_READ_TERMS_CONDITIONS_1=Yes, I have read and understand the
 GUEST_AGREE_READ_TERMS_CONDITIONS_2=and I accept them with this.
 LINK_GUEST_TERMS_CONDITIONS=Terms & Conditions
 LINK_GUEST_PRIVACY_STATEMENTS=privacy statements
-ADMIN_ADD_OR_ENTER_CONTACT_DATA=... or enter the recruiter's contact data:
+ADMIN_ADD_OR_ENTER_CONTACT_DATA=... or enter the user's contact data:
 ADMIN_PERSONAL_DATA_EMAIL_ADDRESS=Email address:
 MENU_RECRUIITER_TITLE=For recruiter
 LINK_RERUITER_LOGIN=Login
index e1fdb68f3300304bcd802a4920e319b0544ae584..2abb66c25c154b2e29ff39d9291d827b6b1a6426 100644 (file)
@@ -335,7 +335,7 @@ public class PizzaWebRequestHelperBean implements PizzaWebRequestHelperControlle
                // Default key is "unused"
                String messageKey = "CONTACT_IS_UNUSED"; //NOI18N
 
-               // Check user/customer
+               // Check user/customer contact
                boolean isUserContact = this.userController.isContactFound(contact);
                boolean isCustomerContact = this.customerController.isContactFound(contact);
 
index 28d438f30013447e562c0bfa33a2e9b57bcbf4dd..38f561b92b1e4eb70db3914931dd70b382c25806 100644 (file)
@@ -550,23 +550,23 @@ public class PizzaUserWebSessionBean extends BasePizzaController implements Pizz
                // Is all data set?
                if (this.getUserName() == null) {
                        // Throw NPE
-                       throw new NullPointerException("recruiterName is null"); //NOI18N
+                       throw new NullPointerException("userName is null"); //NOI18N
                } else if (this.getUserName().isEmpty()) {
                        // Is empty
-                       throw new IllegalStateException("recruiterName is empty."); //NOI18N
+                       throw new IllegalStateException("userName is empty."); //NOI18N
                }
 
-               // Create new recruiter instance
-               User recruiter = new LoginUser();
+               // Create new user instance
+               User user = new LoginUser();
 
                // Update all data ...
-               recruiter.setUserName(this.getUserName());
+               user.setUserName(this.getUserName());
 
                // Trace message
-               //* NOISY-DEBUG */ System.out.println(MessageFormat.format("{0}.createUserLogin: recruiter={1} - EXIT!", this.getClass().getSimpleName(), recruiter));
+               //* NOISY-DEBUG */ System.out.println(MessageFormat.format("{0}.createUserLogin: user={1} - EXIT!", this.getClass().getSimpleName(), user));
 
                // Return the new instance
-               return recruiter;
+               return user;
        }
 
        @Override