]> git.mxchange.org Git - addressbook-war.git/commitdiff
Cleanup through inspection + updated jar(s)
authorRoland Haeder <roland@mxchange.org>
Thu, 15 Oct 2015 07:50:33 +0000 (09:50 +0200)
committerRoland Haeder <roland@mxchange.org>
Thu, 15 Oct 2015 07:52:58 +0000 (09:52 +0200)
Signed-off-by:Roland Häder <roland@mxchange.org>

21 files changed:
lib/jcontacts-business-core.jar
lib/jcontacts-core.jar
lib/jcontacts-lib.jar
lib/jcore-logger-lib.jar
lib/jcore.jar
lib/jcoreee.jar
lib/jcountry-core.jar
lib/jphone-core.jar
lib/juser-core.jar
lib/juser-lib.jar
src/java/org/mxchange/addressbook/beans/addressbook/AddressbookWebBean.java
src/java/org/mxchange/addressbook/beans/addressbook/AddressbookWebController.java
src/java/org/mxchange/addressbook/beans/country/CountryWebController.java
src/java/org/mxchange/addressbook/beans/gender/GenderWebController.java
src/java/org/mxchange/addressbook/beans/login/UserLoginWebController.java
src/java/org/mxchange/addressbook/beans/register/UserRegisterWebController.java
src/java/org/mxchange/addressbook/beans/shares/SharesWebBean.java
src/java/org/mxchange/addressbook/beans/shares/SharesWebController.java
src/java/org/mxchange/addressbook/beans/smsprovider/SmsProviderWebController.java
src/java/org/mxchange/addressbook/beans/user/UserWebBean.java
src/java/org/mxchange/addressbook/beans/user/UserWebController.java

index b0ead65c4474b20f1881740895a946c1f63b4ae4..2314d5552061d032db5c327684ab92a975c5db13 100644 (file)
Binary files a/lib/jcontacts-business-core.jar and b/lib/jcontacts-business-core.jar differ
index 4bf2b793f990ceb4be6bc46a3fcbabd1234b7a7a..588f0e34e77622c6568476b940a2c8377d868844 100644 (file)
Binary files a/lib/jcontacts-core.jar and b/lib/jcontacts-core.jar differ
index badc884b7ba2d5e55d032bf76f6c2b2515d576b2..f13e33b9c3923a79549d02e89c0f4e729becedd0 100644 (file)
Binary files a/lib/jcontacts-lib.jar and b/lib/jcontacts-lib.jar differ
index 5049937263bc38db18ddd3a2d142e3f0d86881ed..ce30ba8ab061bc1a1e57a982ffaeea02ad9cb21f 100644 (file)
Binary files a/lib/jcore-logger-lib.jar and b/lib/jcore-logger-lib.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 9daf43639f781789907f1add123c492bbecd73a3..eaf6110dd5bb7767f1dd977ab8ec1a5ff5f8e05c 100644 (file)
Binary files a/lib/jcountry-core.jar and b/lib/jcountry-core.jar differ
index 97bdd3944061172815f3267f811233b4f4dce6c9..9637788dea980962faa7693e89d80d6fcd735f66 100644 (file)
Binary files a/lib/jphone-core.jar and b/lib/jphone-core.jar differ
index 52192afb650a52b7b7b6199a0479a2083a849665..404aa57a64c762198ae62f54693ad7854a9566bf 100644 (file)
Binary files a/lib/juser-core.jar and b/lib/juser-core.jar differ
index cf6b0ff7ab8718301ea8e9f7e5d24f2baf2f520a..3630a889aa4890818042f1154b5a653c5090c9f1 100644 (file)
Binary files a/lib/juser-lib.jar and b/lib/juser-lib.jar differ
index 89427289eed9c290a452f345d5ee7ba37cb3e391..b50a418923c0b1f12380aa0bbdf3a02d341ada08 100644 (file)
@@ -57,26 +57,17 @@ public class AddressbookWebBean implements AddressbookWebController {
         */
        private AddressbookSessionBeanRemote addressbookBean;
 
-       /////////////////////// Properties /////////////////////
        /**
-        * A list of all user's address books
+        * Address book id number (from URL for example)
         */
-       private List<Addressbook> usersAddressbooks;
+       private Long addressbookId;
 
-       /**
-        * A list of all user's shared (with others) address books
-        */
-       private List<ShareableAddressbook> sharedAddressbooks;
 
        /**
         * Name of the address book
         */
        private String addressbookName;
 
-       /**
-        * Address book id number (from URL for example)
-        */
-       private Long addressbookId;
 
        /**
         * Login controller
@@ -84,6 +75,17 @@ public class AddressbookWebBean implements AddressbookWebController {
        @Inject
        private UserLoginWebController loginController;
 
+       /**
+        * A list of all user's shared (with others) address books
+        */
+       private List<ShareableAddressbook> sharedAddressbooks;
+
+       /////////////////////// Properties /////////////////////
+       /**
+        * A list of all user's address books
+        */
+       private List<Addressbook> usersAddressbooks;
+
        /**
         * Default constructor
         */
@@ -155,17 +157,6 @@ public class AddressbookWebBean implements AddressbookWebController {
                return Collections.unmodifiableList(this.usersAddressbooks);
        }
 
-       @Override
-       public List<ShareableAddressbook> allShares () {
-               // Is the user logged in?
-               if (!this.loginController.isUserLoggedIn()) {
-                       // Not logged in
-                       throw new FaceletException("This method can only be called as logged-in user."); //NOI18N
-               }
-
-               return Collections.unmodifiableList(this.sharedAddressbooks);
-       }
-
        @Override
        public List<AddressbookEntry> allEntries (final Addressbook addressbook) {
                // Is the user logged in?
@@ -184,6 +175,17 @@ public class AddressbookWebBean implements AddressbookWebController {
                return this.allEntries(addressbook).size();
        }
 
+       @Override
+       public List<ShareableAddressbook> allShares () {
+               // Is the user logged in?
+               if (!this.loginController.isUserLoggedIn()) {
+                       // Not logged in
+                       throw new FaceletException("This method can only be called as logged-in user."); //NOI18N
+               }
+               
+               return Collections.unmodifiableList(this.sharedAddressbooks);
+       }
+
        @Override
        public Long getAddressbookId () {
                return this.addressbookId;
index b57cf584e3b85c48371e6fc54aa6f10f7c32e039..388565595f12e5827ed304ff74c61fead4ff6be4 100644 (file)
@@ -35,7 +35,7 @@ public interface AddressbookWebController extends Serializable {
         * <p>
         * @return Whether the user has created at least one addressbook
         */
-       public boolean hasCreatedAddressbooks ();
+       boolean hasCreatedAddressbooks ();
 
        /**
         * Creates a new address book with a name and redirects to proper target.
@@ -44,21 +44,21 @@ public interface AddressbookWebController extends Serializable {
         * <p>
         * @return Target to redirect to
         */
-       public String addAddressbook ();
+       String addAddressbook ();
 
        /**
         * Getter for address book name
         * <p>
         * @return Address book name
         */
-       public String getAddressbookName ();
+       String getAddressbookName ();
 
        /**
         * Setter for address book name
         * <p>
         * @param addressbookName Address book name
         */
-       public void setAddressbookName (final String addressbookName);
+       void setAddressbookName (final String addressbookName);
 
        /**
         * Checks if the given address book name is already used by the user.
@@ -67,14 +67,14 @@ public interface AddressbookWebController extends Serializable {
         * <p>
         * @return Whether the name has already been used by the user
         */
-       public boolean isAddressbookNameUsed (final String addressbookName);
+       boolean isAddressbookNameUsed (final String addressbookName);
 
        /**
         * Returns all address books with this user
         * <p>
         * @return A list of all address books by this user
         */
-       public List<Addressbook> allAddressbooks ();
+       List<Addressbook> allAddressbooks ();
 
        /**
         * Returns a list of all address book entries for given address book
@@ -83,14 +83,14 @@ public interface AddressbookWebController extends Serializable {
         * <p>
         * @return List of all entries
         */
-       public List<AddressbookEntry> allEntries (final Addressbook addressbook);
+       List<AddressbookEntry> allEntries (final Addressbook addressbook);
 
        /**
         * Returns a list of all address books the user is sharing with others.
         * <p>
         * @return List of all shared address books
         */
-       public List<ShareableAddressbook> allShares ();
+       List<ShareableAddressbook> allShares ();
 
        /**
         * Size of all entries in given address book
@@ -99,19 +99,19 @@ public interface AddressbookWebController extends Serializable {
         * <p>
         * @return Size of the entries in address book
         */
-       public int allEntriesSize (final Addressbook addressbook);
+       int allEntriesSize (final Addressbook addressbook);
 
        /**
         * Getter for address book id number
         * <p>
         * @return Address book id number
         */
-       public Long getAddressbookId ();
+       Long getAddressbookId ();
 
        /**
         * Setter for address book id number
         * <p>
         * @param addressbookId Address book id number
         */
-       public void setAddressbookId (final Long addressbookId);
+       void setAddressbookId (final Long addressbookId);
 }
index 311af3bc65816057b774fe6c3d76ac03e89a86fc..516079e7fca37c2a18511aa92382750f3152b672 100644 (file)
@@ -32,5 +32,5 @@ public interface CountryWebController extends Serializable {
         * <p>
         * @return All countries
         */
-       public List<Country> allCountries ();
+       List<Country> allCountries ();
 }
index c3f6c4a80d7f55279072c256da05498d83a3fb9b..cf05478289a8b4fe3e11114743c947ffb1b8f6d1 100644 (file)
@@ -32,12 +32,12 @@ public interface GenderWebController extends Serializable {
         * <p>
         * @return All genders as array
         */
-       public Gender[] getAllGenders ();
+       Gender[] getAllGenders ();
 
        /**
         * Getter for only selectable genders as array, UNKNOWN is not selectable
         * <p>
         * @return All genders as array
         */
-       public List<Gender> getSelectableGenders ();
+       List<Gender> getSelectableGenders ();
 }
index 96e785c6fb608ea16eb5b576421c927967b2cd9c..4482179bb9548ea08fd4d6651ea70bc563728e19 100644 (file)
@@ -31,40 +31,40 @@ public interface UserLoginWebController extends Serializable {
         * <p>
         * @return Template type
         */
-       public String getTemplateType ();
+       String getTemplateType ();
 
        /**
         * Setter for template type
         * <p>
         * @param templateType Template type
         */
-       public void setTemplateType (final String templateType);
+       void setTemplateType (final String templateType);
 
        /**
         * Logins the user, if the account is found, confirmed and unlocked.
         * <p>
         * @return Redirect target
         */
-       public String doLogin ();
+       String doLogin ();
 
        /**
         * Getter for logged-in user instance
         * <p>
         * @return Logged-in user instance
         */
-       public User getLoggedInUser ();
+       User getLoggedInUser ();
 
        /**
         * Setter for logged-in user instance
         * <p>
         * @param loggedInUser Logged-in user instance
         */
-       public void setLoggedInUser (final User loggedInUser);
+       void setLoggedInUser (final User loggedInUser);
 
        /**
         * Checks whether the user is logged-in
         * <p>
         * @return Whether the user is logged-in
         */
-       public boolean isUserLoggedIn ();
+       boolean isUserLoggedIn ();
 }
index 0b5ceb5c5a5dec704baa27c4ea2b2f1d72019546..120ccc0a8210db555bf3956d733a573365ca42c5 100644 (file)
@@ -31,5 +31,5 @@ public interface UserRegisterWebController extends Serializable {
         * <p>
         * @return Redirection target
         */
-       public String doRegister ();
+       String doRegister ();
 }
index ce4e467584674fe4e104275a2ebb67cb9dc243af..b75df50e32f7865b5cdcb5516bcebe1bb3350447 100644 (file)
@@ -40,6 +40,11 @@ public class SharesWebBean implements SharesWebController {
         */
        private static final long serialVersionUID = 19_868_976_871_976_780L;
 
+       /**
+        * Cached flag whether the user is sharing address books
+        */
+       private Boolean isUserSharing = null;
+
        /**
         * Login controller injection
         */
@@ -51,10 +56,6 @@ public class SharesWebBean implements SharesWebController {
         */
        private SharedAddressbooksSessionBeanRemote shareBean;
 
-       /**
-        * Cached flag whether the user is sharing address books
-        */
-       private Boolean isUserSharing = null;
 
        /**
         * User id of sharee
index 868fa810b4d4c5b3b0c2561c30dafac993bf6b98..f7b90a528fbd8a835bbe07c4033a3c96c0f05bf8 100644 (file)
@@ -30,26 +30,26 @@ public interface SharesWebController extends Serializable {
         * <p>
         * @return Whether the current user is sharing address books
         */
-       public boolean isSharingAddressbooks ();
+       boolean isSharingAddressbooks ();
 
        /**
         * Getter for sharee's user id
         * <p>
         * @return Sharee's user id
         */
-       public Long getShareeUserId ();
+       Long getShareeUserId ();
 
        /**
         * Setter for sharee's user id
         * <p>
         * @param shareeUserId Sharee's user id
         */
-       public void setShareeUserId (final Long shareeUserId);
+       void setShareeUserId (final Long shareeUserId);
 
        /**
         * Checks whether the sharee's user id is set
         * <p>
         * @return Whether the sharee's user id is set
         */
-       public boolean isShareeUserIdSet ();
+       boolean isShareeUserIdSet ();
 }
index 707185d7aa4e79828f4e31d35a4b9f1345784de7..915ba74ce4101e74c22035f17819e0823598b757 100644 (file)
@@ -32,5 +32,5 @@ public interface SmsProviderWebController extends Serializable {
         * <p>
         * @return All countries
         */
-       public List<SmsProvider> allSmsProvider ();
+       List<SmsProvider> allSmsProvider ();
 }
index 2ae2764105a754b2c9025a366e31ed6ce1941106..0b04027da8fcfa202bf13f25b78493e1fa67b3df 100644 (file)
@@ -154,6 +154,11 @@ public class UserWebBean implements UserWebController {
         */
        private Long phoneNumber;
 
+       /**
+        * A list of all public user profiles
+        */
+       private List<User> publicUserList;
+
        /**
         * Street
         */
@@ -189,20 +194,16 @@ public class UserWebBean implements UserWebController {
         */
        private String userPasswordRepeat;
 
-       /**
-        * ZIP code
-        */
-       private Integer zipCode;
 
        /**
-        * A list of all public user profiles
+        * Whether the user wants a public profile
         */
-       private List<User> publicUserList;
+       private Boolean userProfilePublic;
 
        /**
-        * Whether the user wants a public profile
+        * ZIP code
         */
-       private Boolean userProfilePublic;
+       private Integer zipCode;
 
        /**
         * Default constructor
index e1e153c49bcce588caacd2da27226b5548bd19a1..92cc995f24888c2032d29b12b45cae592a8c195b 100644 (file)
@@ -38,383 +38,383 @@ public interface UserWebController extends Serializable {
         * <p>
         * @param user User instance
         */
-       public void addUserNameEmailAddress (final User user);
+       void addUserNameEmailAddress (final User user);
 
        /**
         * All public user profiles
         * <p>
         * @return A list of all public user profiles
         */
-       public List<User> allPublicUsers ();
+       List<User> allPublicUsers ();
 
        /**
         * Clears all data in this bean
         */
-       public void clearData ();
+       void clearData ();
 
        /**
         * Copies given user into the controller
         * <p>
         * @param user User instance
         */
-       public void copyUser (final User user);
+       void copyUser (final User user);
 
        /**
         * Creates an instance from all properties
         * <p>
         * @return A user instance
         */
-       public User createUserInstance ();
+       User createUserInstance ();
 
        /**
         * Getter for birth day
         * <p>
         * @return Birth day
         */
-       public Date getBirthday ();
+       Date getBirthday ();
 
        /**
         * Setter for birth day
         * <p>
         * @param birthday Birth day
         */
-       public void setBirthday (final Date birthday);
+       void setBirthday (final Date birthday);
 
        /**
         * Getter for ellphone number's carrier
         * <p>
         * @return Cellphone number's carrier
         */
-       public SmsProvider getCellphoneCarrier ();
+       SmsProvider getCellphoneCarrier ();
 
        /**
         * Setter for cellphone number's carrier prefix
         * <p>
         * @param cellphoneCarrier Cellphone number's carrier prefix
         */
-       public void setCellphoneCarrier (final SmsProvider cellphoneCarrier);
+       void setCellphoneCarrier (final SmsProvider cellphoneCarrier);
 
        /**
         * Getter for ellphone number
         * <p>
         * @return Cellphone number
         */
-       public Long getCellphoneNumber ();
+       Long getCellphoneNumber ();
 
        /**
         * Setter for ellphone number
         * <p>
         * @param cellphoneNumber Cellphone number
         */
-       public void setCellphoneNumber (final Long cellphoneNumber);
+       void setCellphoneNumber (final Long cellphoneNumber);
 
        /**
         * City
         * <p>
         * @return the city
         */
-       public String getCity ();
+       String getCity ();
 
        /**
         * City
         * <p>
         * @param city the city to set
         */
-       public void setCity (final String city);
+       void setCity (final String city);
 
        /**
         * Getter for comments
         * <p>
         * @return Comments
         */
-       public String getComment ();
+       String getComment ();
 
        /**
         * Setter for comment
         * <p>
         * @param comment Comments
         */
-       public void setComment (final String comment);
+       void setComment (final String comment);
 
        /**
         * Getter for country instance
         * <p>
         * @return Country instance
         */
-       public Country getCountry ();
+       Country getCountry ();
 
        /**
         * Setter for country instance
         * <p>
         * @param country Country instance
         */
-       public void setCountry (final Country country);
+       void setCountry (final Country country);
 
        /**
         * Getter for email address
         * <p>
         * @return Email address
         */
-       public String getEmailAddress ();
+       String getEmailAddress ();
 
        /**
         * Setter for email address
         * <p>
         * @param emailAddress Email address
         */
-       public void setEmailAddress (final String emailAddress);
+       void setEmailAddress (final String emailAddress);
 
        /**
         * Getter for email address, repeated
         * <p>
         * @return the emailAddress, repeated
         */
-       public String getEmailAddressRepeat ();
+       String getEmailAddressRepeat ();
 
        /**
         * Setter for email address repeated
         * <p>
         * @param emailAddressRepeat the emailAddress to set
         */
-       public void setEmailAddressRepeat (final String emailAddressRepeat);
+       void setEmailAddressRepeat (final String emailAddressRepeat);
 
        /**
         * Family name
         * <p>
         * @return the familyName
         */
-       public String getFamilyName ();
+       String getFamilyName ();
 
        /**
         * Family name
         * <p>
         * @param familyName the familyName to set
         */
-       public void setFamilyName (final String familyName);
+       void setFamilyName (final String familyName);
 
        /**
         * Getter for fax number's area code
         * <p>
         * @return Fax number's area code
         */
-       public Integer getFaxAreaCode ();
+       Integer getFaxAreaCode ();
 
        /**
         * Setter for fax number's area code
         * <p>
         * @param faxAreaCode Fax number's area code
         */
-       public void setFaxAreaCode (final Integer faxAreaCode);
+       void setFaxAreaCode (final Integer faxAreaCode);
 
        /**
         * Getter for fax's country instance
         * <p>
         * @return Fax' country instance
         */
-       public Country getFaxCountry ();
+       Country getFaxCountry ();
 
        /**
         * Setter for fax's country instance
         * <p>
         * @param faxCountry Fax' country instance
         */
-       public void setFaxCountry (final Country faxCountry);
+       void setFaxCountry (final Country faxCountry);
 
        /**
         * Getter for fax number
         * <p>
         * @return Fax number
         */
-       public Long getFaxNumber ();
+       Long getFaxNumber ();
 
        /**
         * Setter for fax number
         * <p>
         * @param faxNumber Fax number
         */
-       public void setFaxNumber (final Long faxNumber);
+       void setFaxNumber (final Long faxNumber);
 
        /**
         * First name
         * <p>
         * @return the first name
         */
-       public String getFirstName ();
+       String getFirstName ();
 
        /**
         * First name
         * <p>
         * @param firstName the first name to set
         */
-       public void setFirstName (final String firstName);
+       void setFirstName (final String firstName);
 
        /**
         * Gender of the contact
         * <p>
         * @return the gender
         */
-       public Gender getGender ();
+       Gender getGender ();
 
        /**
         * Gender of the contact
         * <p>
         * @param gender the gender to set
         */
-       public void setGender (final Gender gender);
+       void setGender (final Gender gender);
 
        /**
         * House number
         * <p>
         * @return the houseNumber
         */
-       public Short getHouseNumber ();
+       Short getHouseNumber ();
 
        /**
         * House number
         * <p>
         * @param houseNumber the houseNumber to set
         */
-       public void setHouseNumber (final Short houseNumber);
+       void setHouseNumber (final Short houseNumber);
 
        /**
         * Getter for phone number's area code
         * <p>
         * @return Phone number's area code
         */
-       public Integer getPhoneAreaCode ();
+       Integer getPhoneAreaCode ();
 
        /**
         * Setter for phone number's area code
         * <p>
         * @param phoneAreaCode Phone number's area code
         */
-       public void setPhoneAreaCode (final Integer phoneAreaCode);
+       void setPhoneAreaCode (final Integer phoneAreaCode);
 
        /**
         * Getter for phone number's country instance
         * <p>
         * @return Phone number's country instance
         */
-       public Country getPhoneCountry ();
+       Country getPhoneCountry ();
 
        /**
         * Setter for phone number's country instance
         * <p>
         * @param phoneCountry Phone number's country instance
         */
-       public void setPhoneCountry (final Country phoneCountry);
+       void setPhoneCountry (final Country phoneCountry);
 
        /**
         * Getter for phone number
         * <p>
         * @return Phone number
         */
-       public Long getPhoneNumber ();
+       Long getPhoneNumber ();
 
        /**
         * Setter for phone number
         * <p>
         * @param phoneNumber Phone number
         */
-       public void setPhoneNumber (final Long phoneNumber);
+       void setPhoneNumber (final Long phoneNumber);
 
        /**
         * Street
         * <p>
         * @return the street
         */
-       public String getStreet ();
+       String getStreet ();
 
        /**
         * Street
         * <p>
         * @param street the street to set
         */
-       public void setStreet (final String street);
+       void setStreet (final String street);
 
        /**
         * Getter for user id
         * <p>
         * @return User id
         */
-       public Long getUserId ();
+       Long getUserId ();
 
        /**
         * Setter for user id
         * <p>
         * @param userId User id
         */
-       public void setUserId (final Long userId);
+       void setUserId (final Long userId);
 
        /**
         * Getter for user name
         * <p>
         * @return User name
         */
-       public String getUserName ();
+       String getUserName ();
 
        /**
         * Setter for user name
         * <p>
         * @param userName User name
         */
-       public void setUserName (final String userName);
+       void setUserName (final String userName);
 
        /**
         * Getter for unencrypted user password
         * <p>
         * @return Unencrypted user password
         */
-       public String getUserPassword ();
+       String getUserPassword ();
 
        /**
         * Setter for unencrypted user password
         * <p>
         * @param userPassword Unencrypted user password
         */
-       public void setUserPassword (final String userPassword);
+       void setUserPassword (final String userPassword);
 
        /**
         * Getter for unencrypted user password repeated
         * <p>
         * @return Unencrypted user password repeated
         */
-       public String getUserPasswordRepeat ();
+       String getUserPasswordRepeat ();
 
        /**
         * Setter for unencrypted user password repeated
         * <p>
         * @param userPasswordRepeat Unencrypted user password repeated
         */
-       public void setUserPasswordRepeat (final String userPasswordRepeat);
+       void setUserPasswordRepeat (final String userPasswordRepeat);
 
        /**
         * ZIP code
         * <p>
         * @return the zipCode
         */
-       public Integer getZipCode ();
+       Integer getZipCode ();
 
        /**
         * ZIP code
         * <p>
         * @param zipCode the zipCode to set
         */
-       public void setZipCode (final Integer zipCode);
+       void setZipCode (final Integer zipCode);
 
        /**
         * Getter for user public profile flag
         * <p>
         * @return User public profile flag
         */
-       public Boolean getUserProfilePublic ();
+       Boolean getUserProfilePublic ();
 
        /**
         * Setter for user public profile flag
         * <p>
         * @param userProfilePublic User public profile flag
         */
-       public void setUserProfilePublic (final Boolean userProfilePublic);
+       void setUserProfilePublic (final Boolean userProfilePublic);
 
        /**
         * Checks whether user instance's email address is used
@@ -423,28 +423,28 @@ public interface UserWebController extends Serializable {
         * <p>
         * @return Whether it is already used
         */
-       public boolean isEmailAddressRegistered (final User user);
+       boolean isEmailAddressRegistered (final User user);
 
        /**
         * Checks whether all required personal data is set
         * <p>
         * @return Whether the required personal data is set
         */
-       public boolean isRequiredPersonalDataSet ();
+       boolean isRequiredPersonalDataSet ();
 
        /**
         * Checks whether same email addresses have been entered
         * <p>
         * @return Whether same email addresses have been entered
         */
-       public boolean isSameEmailAddressEntered ();
+       boolean isSameEmailAddressEntered ();
 
        /**
         * Checks whether same passwords has been entered
         * <p>
         * @return Whether same passwords has been entered
         */
-       public boolean isSamePasswordEntered ();
+       boolean isSamePasswordEntered ();
 
        /**
         * Checks whether given user instance's name is used
@@ -453,7 +453,7 @@ public interface UserWebController extends Serializable {
         * <p>
         * @return Whether it is already used
         */
-       public boolean isUserNameRegistered (final User user);
+       boolean isUserNameRegistered (final User user);
 
        /**
         * Checks whether a public user account is registered. This means that at
@@ -461,5 +461,5 @@ public interface UserWebController extends Serializable {
         * <p>
         * @return Whether at least one user has a public profile
         */
-       public boolean isPublicUserRegistered ();
+       boolean isPublicUserRegistered ();
 }