Guest User

Untitled

a guest
Apr 20th, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. package cs308dcm.repositories;
  2.  
  3. import org.springframework.data.repository.CrudRepository;
  4.  
  5. import cs308dcm.models.User;
  6.  
  7. public interface UserRepository extends CrudRepository<User, Integer> {
  8.  
  9. public User findByUsernameAndPassword(String username, String password);
  10. }
Add Comment
Please, Sign In to add comment