]> git.mxchange.org Git - jfinancials-core.git/commitdiff
updated own name and resources
authorRoland Haeder <roland@mxchange.org>
Mon, 10 Apr 2017 21:55:11 +0000 (23:55 +0200)
committerRoland Haeder <roland@mxchange.org>
Mon, 10 Apr 2017 21:55:11 +0000 (23:55 +0200)
Signed-off-by: Roland Häder <roland@mxchange.org>
src/org/mxchange/addressbook/database/BaseAddressbookDatabaseBean.java

index 3c15337886f6e03dbd3867e38eba0b4fb637eb3b..26410cf5c4ccdf6449dc621c2784b5b0968c3b65 100644 (file)
@@ -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.
  * <p>
- * @author Roland Haeder<roland@mxchange.org>
+ * @author Roland Häder<roland@mxchange.org>
  */
 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();