]> git.mxchange.org Git - jjobs-war.git/blobdiff - src/java/org/mxchange/jjobs/beans/user/JobsAdminUserWebRequestBean.java
Removed all clear() methods in request-scoped beans as it makes no sense to clear...
[jjobs-war.git] / src / java / org / mxchange / jjobs / beans / user / JobsAdminUserWebRequestBean.java
index 11363c2cd3c60bc0f9bbac3a566f0e0ed22ae9c8..4f6c46438e4e40cfcf977f0774f689e064f57855 100644 (file)
@@ -183,9 +183,6 @@ public class JobsAdminUserWebRequestBean implements JobsAdminUserWebRequestContr
                // Add user to local list
                this.userList.add(updatedUser);
 
-               // Clear all
-               this.clear();
-
                // Clear contact instance
                this.contactController.clear();
        }
@@ -196,6 +193,11 @@ public class JobsAdminUserWebRequestBean implements JobsAdminUserWebRequestContr
                return Collections.unmodifiableList(this.userList);
        }
 
+       @Override
+       public void editUserData () {
+               throw new UnsupportedOperationException("Not supported yet."); //NOI18N
+       }
+
        @Override
        public String getUserName () {
                return this.userName;
@@ -277,16 +279,6 @@ public class JobsAdminUserWebRequestBean implements JobsAdminUserWebRequestContr
                return user;
        }
 
-       /**
-        * Clears this bean
-        */
-       private void clear () {
-               // Clear all
-               this.setUserName(null);
-               this.setUserPassword(null);
-               this.setUserPasswordRepeat(null);
-       }
-
        /**
         * Checks if same password is entered and that they are not empty.
         * <p>