]> git.mxchange.org Git - addressbook-lib.git/blobdiff - src/org/mxchange/addressbook/client/BaseAddressbookClient.java
Renaming season: renamed manager -> facade
[addressbook-lib.git] / src / org / mxchange / addressbook / client / BaseAddressbookClient.java
index effa814cc046867f8493481c1733f0e5ff2171cc..5f12b48383bdc035721a94c60fb96d68e31036d3 100644 (file)
@@ -23,8 +23,8 @@ import java.util.Map;
 import javax.naming.Context;
 import javax.naming.InitialContext;
 import javax.naming.NamingException;
-import org.mxchange.addressbook.manager.contact.AddressbookContactManager;
-import org.mxchange.addressbook.manager.contact.ManageableContactAddressbook;
+import org.mxchange.addressbook.facade.contact.AddressbookContactFacade;
+import org.mxchange.addressbook.facade.contact.ContactFacade;
 import org.mxchange.addressbook.menu.Menu;
 import org.mxchange.jcore.client.BaseClient;
 import org.mxchange.jcore.client.Client;
@@ -156,12 +156,12 @@ public abstract class BaseAddressbookClient extends BaseClient implements Addres
                // Debug message
                this.getLogger().logDebug("Initializing contact manager ..."); //NOI18N
 
-               // Init contact manager with console client
+               // Init contact facade with console client
                // TODO Static initial amount of contacts
-               ManageableContactAddressbook manager = new AddressbookContactManager((Client) this);
+               ContactFacade facade = new AddressbookContactFacade((Client) this);
 
                // Set it here
-               this.setManager(manager);
+               this.setManager(facade);
 
                // Debug message
                this.getLogger().logDebug("Contact manager has been initialized."); //NOI18N