main
Last change
on this file since 5a9c93b was 5a9c93b, checked in by Aleksandar Panovski <apano77@…>, 15 months ago |
Authorization layer
|
-
Property mode
set to
100644
|
File size:
436 bytes
|
Line | |
---|
1 | package com.example.rezevirajmasa.demo.service;
|
---|
2 |
|
---|
3 | import com.example.rezevirajmasa.demo.dto.CredentialsDto;
|
---|
4 | import com.example.rezevirajmasa.demo.dto.SignUpDto;
|
---|
5 | import com.example.rezevirajmasa.demo.dto.UserDto;
|
---|
6 | import lombok.RequiredArgsConstructor;
|
---|
7 |
|
---|
8 |
|
---|
9 | public interface UserService {
|
---|
10 | public UserDto findByEmail(String email);
|
---|
11 | public UserDto login(CredentialsDto credentialsDto);
|
---|
12 | public UserDto register(SignUpDto userDto);
|
---|
13 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.