From: Roland Häder Date: Thu, 6 Jul 2017 18:54:50 +0000 (+0200) Subject: Please cherry-pick: X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=45e8ef86323cea974b6116512d882f969e432ba1;p=pizzaservice-mailer-ejb.git Please cherry-pick: - these entity hints were maybe wrong because a List is being returned and not POJI alone. Signed-off-by: Roland Häder --- 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();