Last change
on this file was d3cf3a1, checked in by Marija Micevska <marija_micevska@…>, 2 years ago |
Initial commit
|
-
Property mode
set to
100644
|
File size:
419 bytes
|
Line | |
---|
1 | package project.educatum.service;
|
---|
2 |
|
---|
3 | import org.springframework.security.core.userdetails.UserDetails;
|
---|
4 | import org.springframework.security.core.userdetails.UserDetailsService;
|
---|
5 |
|
---|
6 | public interface AuthService extends UserDetailsService {
|
---|
7 |
|
---|
8 | UserDetails loginTeacher(String email, String password);
|
---|
9 |
|
---|
10 | UserDetails loginStudent(String email, String password);
|
---|
11 |
|
---|
12 | UserDetails loginAdmin(String email, String password);
|
---|
13 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.