File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed
src/main/java/org/woehlke/java/simpleworklist/domain/db/user Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change 3
3
import lombok .*;
4
4
import org .hibernate .validator .constraints .Length ;
5
5
import javax .validation .constraints .NotBlank ;
6
- //import org.hibernate.validator.constraints.SafeHtml;
7
6
import org .woehlke .java .simpleworklist .application .framework .AuditModel ;
8
7
9
8
import javax .persistence .*;
30
29
@ NamedQueries ({
31
30
@ NamedQuery (
32
31
name = "queryFindAllMessagesBetweenCurrentAndOtherUser" ,
33
- query = "select m from UserAccountChatMessage m "
34
- + "where (m.sender = :thisUser and m.receiver = :otherUser) "
35
- + "or (m.sender = :otherUser and m.receiver = :thisUser)" ,
32
+ query = "select m from org.woehlke.java.simpleworklist.domain.db.user. UserAccountChatMessage m " +
33
+ "where (m.sender = :thisUser and m.receiver = :otherUser) " +
34
+ "or (m.sender = :otherUser and m.receiver = :thisUser)" ,
36
35
lockMode = LockModeType .READ
37
36
)
38
37
})
You can’t perform that action at this time.
0 commit comments