]> git.mxchange.org Git - jaddressbook-share-lib.git/blobdiff - src/org/mxchange/addressbook/model/addressbook/AddressbookSessionBeanRemote.java
Refacture:
[jaddressbook-share-lib.git] / src / org / mxchange / addressbook / model / addressbook / AddressbookSessionBeanRemote.java
index 1d2756399af66554d5a8f8c5b12813abbd9006b6..bfc99a4137ad7ba4c7f41f30cc36c9de9040350c 100644 (file)
@@ -19,9 +19,10 @@ package org.mxchange.addressbook.model.addressbook;
 import java.io.Serializable;
 import java.util.List;
 import javax.ejb.Remote;
-import org.mxchange.addressbook.exceptions.AddressbookNameAlreadyUsedException;
-import org.mxchange.addressbook.exceptions.AddressbookNotFoundException;
-import org.mxchange.addressbook.model.addressbook.entry.AddressbookEntry;
+import org.mxchange.jaddressbookcore.exceptions.AddressbookNameAlreadyUsedException;
+import org.mxchange.jaddressbookcore.exceptions.AddressbookNotFoundException;
+import org.mxchange.jaddressbookcore.model.addressbook.Addressbook;
+import org.mxchange.jaddressbookcore.model.addressbook.entry.AddressbookEntry;
 import org.mxchange.jusercore.model.user.User;
 
 /**
@@ -60,7 +61,7 @@ public interface AddressbookSessionBeanRemote extends Serializable {
         * <p>
         * @return Address book instance
         * <p>
-        * @throws org.mxchange.addressbook.exceptions.AddressbookNotFoundException
+        * @throws org.mxchange.jaddressbookcore.exceptions.AddressbookNotFoundException
         * If the address book cannot be found by given id number
         * @throws NullPointerException If addressbookId is null
         * @throws IllegalArgumentException If the id number is below 1
@@ -95,7 +96,7 @@ public interface AddressbookSessionBeanRemote extends Serializable {
         * @return Updated address book instance
         * <p>
         * @throws
-        * org.mxchange.addressbook.exceptions.AddressbookNameAlreadyUsedException
+        * org.mxchange.jaddressbookcore.exceptions.AddressbookNameAlreadyUsedException
         * If the address book's name has already been used by the user.
         */
        Addressbook createAddressbook (final Addressbook addressbook) throws AddressbookNameAlreadyUsedException;