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 33import lombok .*;
44import org .hibernate .validator .constraints .Length ;
55import javax .validation .constraints .NotBlank ;
6- //import org.hibernate.validator.constraints.SafeHtml;
76import org .woehlke .java .simpleworklist .application .framework .AuditModel ;
87
98import javax .persistence .*;
3029@ NamedQueries ({
3130 @ NamedQuery (
3231 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)" ,
3635 lockMode = LockModeType .READ
3736 )
3837})
You can’t perform that action at this time.
0 commit comments