source: src/main/java/com/example/eatys_app/service/KorisnikService.java

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 
1package com.example.eatys_app.service;
2
3import com.example.eatys_app.model.Korisnik;
4import org.springframework.security.core.userdetails.UserDetailsService;
5
6public 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.