]> git.mxchange.org Git - juser-activity-core.git/commitdiff
renamed to ":param", maybe the JPA got confused? :-(
authorRoland Haeder <roland@mxchange.org>
Wed, 14 Oct 2015 12:55:01 +0000 (14:55 +0200)
committerRoland Haeder <roland@mxchange.org>
Wed, 14 Oct 2015 12:55:01 +0000 (14:55 +0200)
Signed-off-by:Roland Häder <roland@mxchange.org>

src/org/mxchange/jusercore/model/user/LoginUser.java

index 3f89337a87c8da3a1ffefcfb3a52b90842b5aae0..a3fa86d4c412d65e4696df5a17f16d6aa2a74259 100644 (file)
@@ -66,7 +66,7 @@ import org.mxchange.jusercore.model.user.status.UserAccountStatus;
                        @NamedQuery (name = "AllEmailAddresses", query = "SELECT DISTINCT c.contactEmailAddress FROM contacts AS c INNER JOIN users AS u ON u.userContact = 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 = :CONFIRMED AND u.userPublicProfile = TRUE")
+                       @NamedQuery (name = "AllPublicUsers", query = "SELECT u FROM users AS u WHERE u.userAccountStatus = :param AND u.userPublicProfile = TRUE")
                }
 )
 public class LoginUser implements User {