From 14b0c67aca7311900514595a1936d9dddc780264 Mon Sep 17 00:00:00 2001 From: Roland Haeder Date: Mon, 10 Apr 2017 23:55:11 +0200 Subject: [PATCH] updated own name and resources MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Roland Häder --- .../addressbook/database/BaseAddressbookDatabaseBean.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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(); -- 2.39.5