]> git.mxchange.org Git - addressbook-lib.git/blobdiff - src/org/mxchange/addressbook/model/addressbook/AddressbookSessionBeanRemote.java
Cleanup through inspection + updated jar(s)
[addressbook-lib.git] / src / org / mxchange / addressbook / model / addressbook / AddressbookSessionBeanRemote.java
index 44da7a749cb208446df64e0de8b507c39680df2c..0fe67bba81ead39ebbe4291e31b1d744aca18eb0 100644 (file)
@@ -39,7 +39,7 @@ public interface AddressbookSessionBeanRemote extends Serializable {
         * <p>
         * @return List of all entries
         */
-       public List<AddressbookEntry> allEntries (final Addressbook addressbook);
+       List<AddressbookEntry> allEntries (final Addressbook addressbook);
 
        /**
         * Some "getter" for a list of address books the logged-in user has created
@@ -48,7 +48,7 @@ public interface AddressbookSessionBeanRemote extends Serializable {
         * <p>
         * @return List of all address books
         */
-       public List<Addressbook> getUsersList (final User loggedInUser);
+       List<Addressbook> getUsersList (final User loggedInUser);
 
        /**
         * Creates given address book by persisting it. A User instance must be set,
@@ -62,7 +62,7 @@ public interface AddressbookSessionBeanRemote extends Serializable {
         * org.mxchange.addressbook.exceptions.AddressbookNameAlreadyUsedException
         * If the address book's name has already been used by the user.
         */
-       public Addressbook createAddressbook (final Addressbook addressbook) throws AddressbookNameAlreadyUsedException;
+       Addressbook createAddressbook (final Addressbook addressbook) throws AddressbookNameAlreadyUsedException;
 
        /**
         * Checks whether the given address book id is used (means available).
@@ -70,7 +70,7 @@ public interface AddressbookSessionBeanRemote extends Serializable {
         * @param addressbookId Address book id to check
         * @return Whether the id is valid
         */
-       public boolean isAddressbookIdUsed (final Long addressbookId);
+       boolean isAddressbookIdUsed (final Long addressbookId);
 
        /**
         * Checks if the given address book's name is already used by the user.
@@ -79,5 +79,5 @@ public interface AddressbookSessionBeanRemote extends Serializable {
         * <p>
         * @return Whether the name has already been used by the user
         */
-       public boolean isAddressbookNameUsed (final Addressbook addressbook);
+       boolean isAddressbookNameUsed (final Addressbook addressbook);
 }