]> git.mxchange.org Git - addressbook-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:08:13 +0000 (14:08 +0200)
Signed-off-by: Roland Häder <roland@mxchange.org>
src/java/org/mxchange/addressbook/beans/helper/AddressbookWebRequestHelperBean.java
src/java/org/mxchange/addressbook/beans/user/AddressbookUserWebSessionBean.java
src/java/org/mxchange/localization/bundle_en_US.properties
web/resources/css/cssLayout.css

index 704b770ae74e27ba85cff1b0db094ec381e48b11..4d9ed6a30809a92edeb9c91672a6d4b2145a29e8 100644 (file)
@@ -311,7 +311,7 @@ public class AddressbookWebRequestHelperBean implements AddressbookWebRequestHel
                // Default key is "unused"
                String messageKey = "CONTACT_IS_UNUSED"; //NOI18N
 
-               // Check user/recruiter
+               // Check user contact
                boolean isUserContact = this.userController.isContactFound(contact);
 
                // Check user first
index 338ae7f0e6d78e753aec493cc511ead04cfd7658..d1c466fdc99ed8a433740b407b71b651164fc241 100644 (file)
@@ -550,23 +550,23 @@ public class AddressbookUserWebSessionBean extends BaseAddressbookController imp
                // 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
index 87907ed0d528ca087b2233484ab3ed978a453c67..f3a7b58ae4032d704cec127948b32e8a65617ed2 100644 (file)
@@ -486,7 +486,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:
 ERROR_CONTACT_ID_NOT_FOUND=Error: contact data not found
 GUEST_REGISTRATION_PAGE1_TITLE=Registration page 1
index 69402ba6e784205d8de2de1e27fa60746c08311f..457d841aa312e2e4df3b19ede3fe988819c943f4 100644 (file)
@@ -280,7 +280,7 @@ ul.footer_nav li.footer_copyright {
        color: #00aa00;
 }
 
-.user_status_confirmed, .customer_status_confirmed, .recruiter_status_confirmed {
+.user_status_confirmed, .customer_status_confirmed {
        color: #00aa00;
 }
 
@@ -288,7 +288,7 @@ ul.footer_nav li.footer_copyright {
        color: #00aaaa;
 }
 
-.user_status_locked, .customer_status_locked, .recruiter_status_locked {
+.user_status_locked, .customer_status_locked {
        color: #aa0000;
 }