Skip to content
Snippets Groups Projects
Commit eef1ba0e authored by Martin Gargalovič's avatar Martin Gargalovič
Browse files

changed the id from String to Long

parent 2158b168
No related branches found
No related tags found
3 merge requests!31M2,!28M2 user,!27Draft: M2 user
......@@ -19,7 +19,7 @@ public class UserService extends DomainService<User> {
}
@Transactional(readOnly = true)
public User find(String id) {
public User find(Long id) {
return repository.findById(id)
.orElseThrow(() -> new EntityNotFoundException("User '" + id + "' not found."));
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment