From: Roland Haeder Date: Thu, 15 Oct 2015 07:46:44 +0000 (+0200) Subject: Cleanup through inspection + updated jar(s) X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=1df30a1ca856d1aa815f23352b627a46e1303d58;p=juser-core.git Cleanup through inspection + updated jar(s) Signed-off-by:Roland Häder --- diff --git a/lib/jcontacts-core.jar b/lib/jcontacts-core.jar index 4bf2b79..588f0e3 100644 Binary files a/lib/jcontacts-core.jar and b/lib/jcontacts-core.jar differ diff --git a/lib/jcore.jar b/lib/jcore.jar index a6eb677..1c2e570 100644 Binary files a/lib/jcore.jar and b/lib/jcore.jar differ diff --git a/lib/jcoreee.jar b/lib/jcoreee.jar index db108dd..6ea5dee 100644 Binary files a/lib/jcoreee.jar and b/lib/jcoreee.jar differ diff --git a/src/org/mxchange/jusercore/container/login/LoginContainer.java b/src/org/mxchange/jusercore/container/login/LoginContainer.java index 1d0d320..625ba2f 100644 --- a/src/org/mxchange/jusercore/container/login/LoginContainer.java +++ b/src/org/mxchange/jusercore/container/login/LoginContainer.java @@ -31,26 +31,26 @@ public interface LoginContainer extends Serializable { *

* @return User instance */ - public User getUser (); + User getUser (); /** * Setter for user instance *

* @param user User instance */ - public void setUser (final User user); + void setUser (final User user); /** * Getter for user password *

* @return User password */ - public String getUserPassword (); + String getUserPassword (); /** * Setter for user password *

* @param userPassword User password */ - public void setUserPassword (final String userPassword); + void setUserPassword (final String userPassword); } diff --git a/src/org/mxchange/jusercore/model/user/User.java b/src/org/mxchange/jusercore/model/user/User.java index 236d8d1..5795c29 100644 --- a/src/org/mxchange/jusercore/model/user/User.java +++ b/src/org/mxchange/jusercore/model/user/User.java @@ -33,133 +33,133 @@ public interface User extends Serializable { *

* @param customer Source instance */ - public void copyAll (final User customer); + void copyAll (final User customer); /** * Getter for account status *

* @return Account status */ - public UserAccountStatus getUserAccountStatus (); + UserAccountStatus getUserAccountStatus (); /** * Setter for account status *

* @param customerStatus Account status */ - public void setUserAccountStatus (final UserAccountStatus customerStatus); + void setUserAccountStatus (final UserAccountStatus customerStatus); /** * Getter for confirmation key *

* @return Confirmation key */ - public String getUserConfirmKey (); + String getUserConfirmKey (); /** * Setter for confirmation key *

* @param customerConfirmKey Confirmation key */ - public void setUserConfirmKey (final String customerConfirmKey); + void setUserConfirmKey (final String customerConfirmKey); /** * Getter for contact instance *

* @return Contact id number */ - public Contact getUserContact (); + Contact getUserContact (); /** * Setter for contact instance *

* @param contact Contact instance */ - public void setUserContact (final Contact contact); + void setUserContact (final Contact contact); /** * Getter for "created" timestamp *

* @return "created" timestamp */ - public Calendar getUserCreated (); + Calendar getUserCreated (); /** * Setter for "created" timestamp *

* @param customerCreated "created" timestamp */ - public void setUserCreated (final Calendar customerCreated); + void setUserCreated (final Calendar customerCreated); /** * Getter for encrypted password *

* @return Encrypted password */ - public String getUserEncryptedPassword (); + String getUserEncryptedPassword (); /** * Setter for password hash *

* @param userEncryptedPassword Encrypted password */ - public void setUserEncryptedPassword (final String userEncryptedPassword); + void setUserEncryptedPassword (final String userEncryptedPassword); /** * Getter for customer id number *

* @return User id number */ - public Long getUserId (); + Long getUserId (); /** * Settte for customer id number *

* @param customerId User id number */ - public void setUserId (final Long customerId); + void setUserId (final Long customerId); /** * Getter for "locked" timestamp *

* @return "locked" timestamp */ - public Calendar getUserLocked (); + Calendar getUserLocked (); /** * Getter for "locked" timestamp *

* @param customerLocked "locked" timestamp */ - public void setUserLocked (final Calendar customerLocked); + void setUserLocked (final Calendar customerLocked); /** * Getter for customer number *

* @return User number */ - public String getUserName (); + String getUserName (); /** * Setter for customer number *

* @param customerNumber User number */ - public void setUserName (final String customerNumber); + void setUserName (final String customerNumber); /** * Getter for public user profile flag *

* @return Whether the user has a public profile */ - public Boolean getUserPublicProfile (); + Boolean getUserPublicProfile (); /** * Setter for public user profile flag *

* @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 (); }