From 12ec5fe4875d1bda8bdded28483ef8c592d55173 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 --- .../pizzaaplication/database/BasePizzaDatabaseBean.java | 8 ++++---- .../pizzaapplication/model/customer/PizzaCustomer.java | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/org/mxchange/pizzaaplication/database/BasePizzaDatabaseBean.java b/src/org/mxchange/pizzaaplication/database/BasePizzaDatabaseBean.java index 2575794..d820a15 100644 --- a/src/org/mxchange/pizzaaplication/database/BasePizzaDatabaseBean.java +++ b/src/org/mxchange/pizzaaplication/database/BasePizzaDatabaseBean.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 BasePizzaDatabaseBean extends BaseDatabaseBean { @@ -89,10 +89,10 @@ public abstract class BasePizzaDatabaseBean 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/pizzaservice-queue-factory"); //NOI18N // Lookup queue - this.queue = (Queue) context.lookup("jms/jlandingpage-email-queue"); //NOI18N + this.queue = (Queue) context.lookup("jms/pizzaservice-email-queue"); //NOI18N // Create connection this.connection = connectionFactory.createConnection(); diff --git a/src/org/mxchange/pizzaapplication/model/customer/PizzaCustomer.java b/src/org/mxchange/pizzaapplication/model/customer/PizzaCustomer.java index 5469754..c5e1439 100644 --- a/src/org/mxchange/pizzaapplication/model/customer/PizzaCustomer.java +++ b/src/org/mxchange/pizzaapplication/model/customer/PizzaCustomer.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 Affero General Public License as @@ -45,7 +45,7 @@ import org.mxchange.jcustomercore.model.customer.status.CustomerAccountStatus; /** * A customer entity *

- * @author Roland Haeder + * @author Roland Häder */ @Entity (name = "customer") @Table ( -- 2.39.5