]> git.mxchange.org Git - jfinancials-core.git/commitdiff
some renames for project-initialization
authorRoland Haeder <roland@mxchange.org>
Thu, 13 Apr 2017 13:01:51 +0000 (15:01 +0200)
committerRoland Haeder <roland@mxchange.org>
Thu, 13 Apr 2017 13:08:22 +0000 (15:08 +0200)
Signed-off-by: Roland Häder <roland@mxchange.org>
src/org/mxchange/jfinancials/database/BaseFinancialsDatabaseBean.java

index 20034ea9612f2fed7f3ee1f07131ba6c87cdcad4..b17fdcaac28f2946134e90909fb21926a255e5dc 100644 (file)
@@ -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();