package org.ros.chatto.repository; import java.util.List; public interface UserRepositoryCustom { // @Query("select s from Article s where s.author like ?1 and s.title = ?2") // List
findByAuthorAndTitle(String author, String title); // @Query("select u from ChatUser u") public List getAllUserNames(String s); }