]> git.mxchange.org Git - juser-core.git/commitdiff
some minor fixes, such as variables renamed
authorRoland Haeder <roland@mxchange.org>
Fri, 16 Oct 2015 10:12:10 +0000 (12:12 +0200)
committerRoland Haeder <roland@mxchange.org>
Fri, 16 Oct 2015 10:13:01 +0000 (12:13 +0200)
Signed-off-by:Roland Häder <roland@mxchange.org>

src/org/mxchange/jusercore/model/user/LoginUser.java
src/org/mxchange/jusercore/model/user/User.java

index 959e8279d70134ac83dd197e0857efe3f7430bee..1e64f1dad7524c658dc608fe486f50338f780c20 100644 (file)
@@ -40,7 +40,7 @@ import org.mxchange.jcontacts.contact.UserContact;
 import org.mxchange.jusercore.model.user.status.UserAccountStatus;
 
 /**
- * A shop customer class.
+ * A generic user entity class
  * <p>
  * @author Roland Haeder<roland@mxchange.org>
  */
@@ -196,8 +196,8 @@ public class LoginUser implements User {
        }
 
        @Override
-       public void setUserConfirmKey (final String customerConfirmKey) {
-               this.userConfirmKey = customerConfirmKey;
+       public void setUserConfirmKey (final String userConfirmKey) {
+               this.userConfirmKey = userConfirmKey;
        }
 
        @Override
index 5795c29586a6266e5900e822c35c8fc25947d896..1cc63cfb0d2adaf324881b46714f22b1ccfb374c 100644 (file)
@@ -31,9 +31,9 @@ public interface User extends Serializable {
        /**
         * Copies all attributes from other customer object to this
         * <p>
-        * @param customer Source instance
+        * @param userSource Source instance
         */
-       void copyAll (final User customer);
+       void copyAll (final User userSource);
 
        /**
         * Getter for account status
@@ -45,9 +45,9 @@ public interface User extends Serializable {
        /**
         * Setter for account status
         * <p>
-        * @param customerStatus Account status
+        * @param userStatus Account status
         */
-       void setUserAccountStatus (final UserAccountStatus customerStatus);
+       void setUserAccountStatus (final UserAccountStatus userStatus);
 
        /**
         * Getter for confirmation key
@@ -59,9 +59,9 @@ public interface User extends Serializable {
        /**
         * Setter for confirmation key
         * <p>
-        * @param customerConfirmKey Confirmation key
+        * @param userConfirmKey Confirmation key
         */
-       void setUserConfirmKey (final String customerConfirmKey);
+       void setUserConfirmKey (final String userConfirmKey);
 
        /**
         * Getter for contact instance
@@ -87,9 +87,9 @@ public interface User extends Serializable {
        /**
         * Setter for "created" timestamp
         * <p>
-        * @param customerCreated "created" timestamp
+        * @param userCreated "created" timestamp
         */
-       void setUserCreated (final Calendar customerCreated);
+       void setUserCreated (final Calendar userCreated);
 
        /**
         * Getter for encrypted password
@@ -129,23 +129,23 @@ public interface User extends Serializable {
        /**
         * Getter for "locked" timestamp
         * <p>
-        * @param customerLocked "locked" timestamp
+        * @param userLocked "locked" timestamp
         */
-       void setUserLocked (final Calendar customerLocked);
+       void setUserLocked (final Calendar userLocked);
 
        /**
-        * Getter for customer number
+        * Getter for user name
         * <p>
-        * @return User number
+        * @return User name
         */
        String getUserName ();
 
        /**
-        * Setter for customer number
+        * Setter for user name
         * <p>
-        * @param customerNumber User number
+        * @param userName User name
         */
-       void setUserName (final String customerNumber);
+       void setUserName (final String userName);
 
        /**
         * Getter for public user profile flag
@@ -169,7 +169,7 @@ public interface User extends Serializable {
         * @return Whether it matches this object
         */
        @Override
-        boolean equals (final Object object);
+       boolean equals (final Object object);
 
        /**
         * Hash code caluclation for this object
@@ -177,5 +177,5 @@ public interface User extends Serializable {
         * @return Hash code for this object
         */
        @Override
-        int hashCode ();
+       int hashCode ();
 }