]> git.mxchange.org Git - jjobs-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/jjobs/database/BaseJobsDatabaseBean.java

index a79f5499cc669a9378796cbf28c8565188c5d9ae..4dd3e2a5892cc5758a6c7037fcf3ded248603356 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 BaseJobsDatabaseBean extends BaseDatabaseBean {
 
@@ -89,10 +89,10 @@ public abstract class BaseJobsDatabaseBean 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/jjobs-queue-factory"); //NOI18N
 
                        // Lookup queue
-                       this.queue = (Queue) context.lookup("jms/jlandingpage-email-queue"); //NOI18N
+                       this.queue = (Queue) context.lookup("jms/jjobs-email-queue"); //NOI18N
 
                        // Create connection
                        this.connection = connectionFactory.createConnection();