Last change
on this file was b3f2adb, checked in by Aleksandar Siljanoski <acewow3@…>, 14 months ago |
Adding project to repo
|
-
Property mode
set to
100644
|
File size:
354 bytes
|
Line | |
---|
1 | package com.example.eatys_app.service;
|
---|
2 |
|
---|
3 | import com.example.eatys_app.model.Korisnik;
|
---|
4 | import org.springframework.security.core.userdetails.UserDetailsService;
|
---|
5 |
|
---|
6 | public interface KorisnikService extends UserDetailsService {
|
---|
7 |
|
---|
8 |
|
---|
9 | Korisnik register(String ime, String prezime, String password, String repeatPassword);
|
---|
10 |
|
---|
11 | Korisnik FindByName(String ime);
|
---|
12 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.