From 377ce1dcccccaeaa37187c8b17ae3ca89bd7214f Mon Sep 17 00:00:00 2001
From: Roland Haeder <roland@mxchange.org>
Date: Wed, 14 Oct 2015 13:52:08 +0200
Subject: [PATCH] =?utf8?q?An=20enum=20cannot=20be=20compared=20with=20a=20?=
 =?utf8?q?string,=20the=20only=20way=20I=20know=20is=20to=20use=20a=20para?=
 =?utf8?q?meter=20Signed-off-by:Roland=20H=C3=A4der=20<roland@mxchange.org?=
 =?utf8?q?>?=
MIME-Version: 1.0
Content-Type: text/plain; charset=utf8
Content-Transfer-Encoding: 8bit

---
 src/org/mxchange/jusercore/model/user/LoginUser.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/org/mxchange/jusercore/model/user/LoginUser.java b/src/org/mxchange/jusercore/model/user/LoginUser.java
index 4995ee7..c6162dc 100644
--- a/src/org/mxchange/jusercore/model/user/LoginUser.java
+++ b/src/org/mxchange/jusercore/model/user/LoginUser.java
@@ -66,7 +66,7 @@ import org.mxchange.jusercore.model.user.status.UserAccountStatus;
 			@NamedQuery (name = "AllEmailAddresses", query = "SELECT DISTINCT c.contactEmailAddress FROM contacts AS c ORDER BY c.contactId ASC"),
 			@NamedQuery (name = "SearchUserName", query = "SELECT u FROM users AS u WHERE LOWER(u.userName) LIKE LOWER(:param)"),
 			@NamedQuery (name = "SearchEmailAddress", query = "SELECT u FROM users AS u INNER JOIN contacts AS c ON u.userContact = c WHERE LOWER(c.contactEmailAddress) LIKE LOWER(:param)"),
-			@NamedQuery (name = "AllPublicUsers", query = "SELECT u FROM users AS u WHERE u.userAccountStatus LIKE 'CONFIRMED' AND u.userPublicProfile = TRUE")
+			@NamedQuery (name = "AllPublicUsers", query = "SELECT u FROM users AS u WHERE u.userAccountStatus = :CONFIRMED AND u.userPublicProfile = TRUE")
 		}
 )
 public class LoginUser implements User {
-- 
2.39.5