]> git.mxchange.org Git - juser-login-core.git/commitdiff
Cleanup through inspection + updated jar(s)
authorRoland Haeder <roland@mxchange.org>
Thu, 15 Oct 2015 07:46:44 +0000 (09:46 +0200)
committerRoland Haeder <roland@mxchange.org>
Thu, 15 Oct 2015 07:49:45 +0000 (09:49 +0200)
Signed-off-by:Roland Häder <roland@mxchange.org>

lib/jcontacts-core.jar
lib/jcore.jar
lib/jcoreee.jar
src/org/mxchange/jusercore/container/login/LoginContainer.java
src/org/mxchange/jusercore/model/user/User.java

index 4bf2b793f990ceb4be6bc46a3fcbabd1234b7a7a..588f0e34e77622c6568476b940a2c8377d868844 100644 (file)
Binary files a/lib/jcontacts-core.jar and b/lib/jcontacts-core.jar differ
index a6eb677503c0d30b4193df4b45c57ed7216d2652..1c2e5700bc02644df1ffeab194e3f5068109e9bc 100644 (file)
Binary files a/lib/jcore.jar and b/lib/jcore.jar differ
index db108dde70c9a04dcc1d5eb7468ba40659daec95..6ea5dee81a9fef485994cf2c6831b836dd543c7d 100644 (file)
Binary files a/lib/jcoreee.jar and b/lib/jcoreee.jar differ
index 1d0d320deaffe6c7e7901ab21e572f6519e7aac8..625ba2fbf85f562a733b95af508daf64858cab34 100644 (file)
@@ -31,26 +31,26 @@ public interface LoginContainer extends Serializable {
         * <p>
         * @return User instance
         */
-       public User getUser ();
+       User getUser ();
 
        /**
         * Setter for user instance
         * <p>
         * @param user User instance
         */
-       public void setUser (final User user);
+       void setUser (final User user);
 
        /**
         * Getter for user password
         * <p>
         * @return User password
         */
-       public String getUserPassword ();
+       String getUserPassword ();
 
        /**
         * Setter for user password
         * <p>
         * @param userPassword User password
         */
-       public void setUserPassword (final String userPassword);
+       void setUserPassword (final String userPassword);
 }
index 236d8d1f5aaccc5bca8d9ce74e3bcd2170c1e93c..5795c29586a6266e5900e822c35c8fc25947d896 100644 (file)
@@ -33,133 +33,133 @@ public interface User extends Serializable {
         * <p>
         * @param customer Source instance
         */
-       public void copyAll (final User customer);
+       void copyAll (final User customer);
 
        /**
         * Getter for account status
         * <p>
         * @return Account status
         */
-       public UserAccountStatus getUserAccountStatus ();
+       UserAccountStatus getUserAccountStatus ();
 
        /**
         * Setter for account status
         * <p>
         * @param customerStatus Account status
         */
-       public void setUserAccountStatus (final UserAccountStatus customerStatus);
+       void setUserAccountStatus (final UserAccountStatus customerStatus);
 
        /**
         * Getter for confirmation key
         * <p>
         * @return Confirmation key
         */
-       public String getUserConfirmKey ();
+       String getUserConfirmKey ();
 
        /**
         * Setter for confirmation key
         * <p>
         * @param customerConfirmKey Confirmation key
         */
-       public void setUserConfirmKey (final String customerConfirmKey);
+       void setUserConfirmKey (final String customerConfirmKey);
 
        /**
         * Getter for contact instance
         * <p>
         * @return Contact id number
         */
-       public Contact getUserContact ();
+       Contact getUserContact ();
 
        /**
         * Setter for contact instance
         * <p>
         * @param contact Contact instance
         */
-       public void setUserContact (final Contact contact);
+       void setUserContact (final Contact contact);
 
        /**
         * Getter for "created" timestamp
         * <p>
         * @return "created" timestamp
         */
-       public Calendar getUserCreated ();
+       Calendar getUserCreated ();
 
        /**
         * Setter for "created" timestamp
         * <p>
         * @param customerCreated "created" timestamp
         */
-       public void setUserCreated (final Calendar customerCreated);
+       void setUserCreated (final Calendar customerCreated);
 
        /**
         * Getter for encrypted password
         * <p>
         * @return Encrypted password
         */
-       public String getUserEncryptedPassword ();
+       String getUserEncryptedPassword ();
 
        /**
         * Setter for password hash
         * <p>
         * @param userEncryptedPassword Encrypted password
         */
-       public void setUserEncryptedPassword (final String userEncryptedPassword);
+       void setUserEncryptedPassword (final String userEncryptedPassword);
 
        /**
         * Getter for customer id number
         * <p>
         * @return User id number
         */
-       public Long getUserId ();
+       Long getUserId ();
 
        /**
         * Settte for customer id number
         * <p>
         * @param customerId User id number
         */
-       public void setUserId (final Long customerId);
+       void setUserId (final Long customerId);
 
        /**
         * Getter for "locked" timestamp
         * <p>
         * @return "locked" timestamp
         */
-       public Calendar getUserLocked ();
+       Calendar getUserLocked ();
 
        /**
         * Getter for "locked" timestamp
         * <p>
         * @param customerLocked "locked" timestamp
         */
-       public void setUserLocked (final Calendar customerLocked);
+       void setUserLocked (final Calendar customerLocked);
 
        /**
         * Getter for customer number
         * <p>
         * @return User number
         */
-       public String getUserName ();
+       String getUserName ();
 
        /**
         * Setter for customer number
         * <p>
         * @param customerNumber User number
         */
-       public void setUserName (final String customerNumber);
+       void setUserName (final String customerNumber);
 
        /**
         * Getter for public user profile flag
         * <p>
         * @return Whether the user has a public profile
         */
-       public Boolean getUserPublicProfile ();
+       Boolean getUserPublicProfile ();
 
        /**
         * Setter for public user profile flag
         * <p>
         * @param userPublicProfile Whether the user has a public profile
         */
-       public void setUserPublicProfile (final Boolean userPublicProfile);
+       void setUserPublicProfile (final Boolean userPublicProfile);
 
        /**
         * Checks if object is a User instance and whether it matches with this
@@ -169,7 +169,7 @@ public interface User extends Serializable {
         * @return Whether it matches this object
         */
        @Override
-       public 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
-       public int hashCode ();
+        int hashCode ();
 }