From 45e8ef86323cea974b6116512d882f969e432ba1 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Thu, 6 Jul 2017 20:54:50 +0200 Subject: [PATCH] Please cherry-pick: - these entity hints were maybe wrong because a List is being returned and not POJI alone. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Roland Häder --- .../jcontacts/contact/AddressbookContactSessionBean.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/java/org/mxchange/jcontacts/contact/AddressbookContactSessionBean.java b/src/java/org/mxchange/jcontacts/contact/AddressbookContactSessionBean.java index 61dd937..2610872 100644 --- a/src/java/org/mxchange/jcontacts/contact/AddressbookContactSessionBean.java +++ b/src/java/org/mxchange/jcontacts/contact/AddressbookContactSessionBean.java @@ -138,7 +138,7 @@ public class AddressbookContactSessionBean extends BaseAddressbookDatabaseBean i this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.getAllContacts - CALLED!", this.getClass().getSimpleName())); //NOI18N // Create query instance - Query query = this.getEntityManager().createNamedQuery("AllContacts", UserContact.class); //NOI18N + Query query = this.getEntityManager().createNamedQuery("AllContacts"); //NOI18N // Get list List contacts = query.getResultList(); @@ -157,7 +157,7 @@ public class AddressbookContactSessionBean extends BaseAddressbookDatabaseBean i this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.getEmailAddressList - CALLED!", this.getClass().getSimpleName())); //NOI18N // Create query instance - Query query = this.getEntityManager().createNamedQuery("AllContactEmailAddresses", String.class); //NOI18N + Query query = this.getEntityManager().createNamedQuery("AllContactEmailAddresses"); //NOI18N // Get list List emailAddresses = query.getResultList(); -- 2.39.2