From: Roland Haeder Date: Mon, 10 Apr 2017 21:55:11 +0000 (+0200) Subject: updated own name and resources X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=14b0c67aca7311900514595a1936d9dddc780264;p=addressbook-core.git updated own name and resources Signed-off-by: Roland Häder --- diff --git a/src/org/mxchange/addressbook/database/BaseAddressbookDatabaseBean.java b/src/org/mxchange/addressbook/database/BaseAddressbookDatabaseBean.java index 3c15337..26410cf 100644 --- a/src/org/mxchange/addressbook/database/BaseAddressbookDatabaseBean.java +++ b/src/org/mxchange/addressbook/database/BaseAddressbookDatabaseBean.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2016 Roland Haeder + * Copyright (C) 2016 Roland Häder * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -48,7 +48,7 @@ import org.mxchange.jusercore.model.user.UserUtils; /** * A helper class for beans that access the database. *

- * @author Roland Haeder + * @author Roland Häder */ public abstract class BaseAddressbookDatabaseBean extends BaseDatabaseBean { @@ -89,10 +89,10 @@ public abstract class BaseAddressbookDatabaseBean extends BaseDatabaseBean { Context context = new InitialContext(); // Get factory from JMS resource - QueueConnectionFactory connectionFactory = (QueueConnectionFactory) context.lookup("jms/jlandingpage-queue-factory"); //NOI18N + QueueConnectionFactory connectionFactory = (QueueConnectionFactory) context.lookup("jms/addressbook-queue-factory"); //NOI18N // Lookup queue - this.queue = (Queue) context.lookup("jms/jlandingpage-email-queue"); //NOI18N + this.queue = (Queue) context.lookup("jms/addressbook-email-queue"); //NOI18N // Create connection this.connection = connectionFactory.createConnection();