main
Last change
on this file since 89865ae was 676144b, checked in by andrejtodorovski <82031894+andrejtodorovski@…>, 22 months ago |
Added admin view of pending roles and approve functionality
|
-
Property mode
set to
100644
|
File size:
243 bytes
|
Line | |
---|
1 | package com.example.autopartz.service;
|
---|
2 |
|
---|
3 | import com.example.autopartz.model.User;
|
---|
4 |
|
---|
5 | import java.util.List;
|
---|
6 |
|
---|
7 | public interface UserService {
|
---|
8 | List<User> findAllUsers();
|
---|
9 | User findByUsername(String username);
|
---|
10 | User findById(Integer id);
|
---|
11 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.