From: Roland Haeder Date: Thu, 13 Apr 2017 13:01:51 +0000 (+0200) Subject: some renames for project-initialization X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=032854c15d6ad819005f681ca0fb108636145c56;hp=8c7705222ae1380330c74e10377b9210e2af6713;p=jfinancials-core.git some renames for project-initialization Signed-off-by: Roland Häder --- diff --git a/src/org/mxchange/jfinancials/database/BaseFinancialsDatabaseBean.java b/src/org/mxchange/jfinancials/database/BaseFinancialsDatabaseBean.java index 20034ea..b17fdca 100644 --- a/src/org/mxchange/jfinancials/database/BaseFinancialsDatabaseBean.java +++ b/src/org/mxchange/jfinancials/database/BaseFinancialsDatabaseBean.java @@ -89,10 +89,10 @@ public abstract class BaseFinancialsDatabaseBean extends BaseDatabaseBean { Context context = new InitialContext(); // Get factory from JMS resource - QueueConnectionFactory connectionFactory = (QueueConnectionFactory) context.lookup("jms/addressbook-queue-factory"); //NOI18N + QueueConnectionFactory connectionFactory = (QueueConnectionFactory) context.lookup("jms/jfinancials-queue-factory"); //NOI18N // Lookup queue - this.queue = (Queue) context.lookup("jms/addressbook-email-queue"); //NOI18N + this.queue = (Queue) context.lookup("jms/jfinancials-email-queue"); //NOI18N // Create connection this.connection = connectionFactory.createConnection();