Uses of Class
com.is.findyourplace.persistence.entity.Utente
Packages that use Utente
Package
Description
Package che contiene i controller usati
per tutto ciò che riguarda strettamente un utente,
come l'autenticazione e modifica profilo.
Package che contiene tutte le Entity.
Package che contiene tutte le Repository.
Package che contiene i service usati
principalmente lato amministratore.
Package che contiene i service usati
per la ricerca di un luogo.
Package che contiene i service riguardanti l' utente,
come l'autenticazione e la modifica del profilo.
-
Uses of Utente in com.is.findyourplace.controller.gestioneUtenza
Methods in com.is.findyourplace.controller.gestioneUtenza with parameters of type UtenteModifier and TypeMethodDescriptionstatic CustomUserDetailsCustomUserDetails.fromUtente(Utente utente) Map Utente fields to UserDetails Authorities based on the isAdmin flag All users have the "USER" role, Admins have both "USER" and "ADMIN" roles. -
Uses of Utente in com.is.findyourplace.persistence.entity
Constructors in com.is.findyourplace.persistence.entity with parameters of type Utente -
Uses of Utente in com.is.findyourplace.persistence.repository
Methods in com.is.findyourplace.persistence.repository that return UtenteModifier and TypeMethodDescriptionUtenteRepository.findByEmail(String email) Query per trovare un Utente tramite l' email.UtenteRepository.findByIdUtente(Long idUtente) Query per trovare un Utente tramite l' id.UtenteRepository.findByUsername(String username) Query per trovare un Utente tramite l' username.UtenteRepository.findByUsernameOrEmail(String username, String email) Query per trovare un Utente tramite Username o Email.Methods in com.is.findyourplace.persistence.repository that return types with arguments of type UtenteModifier and TypeMethodDescriptionUtenteRepository.findUtentiByIdLuogoPreferito(Long idLuogo, int idqDistance) Query personalizzata per restituire una lista di utenti che hanno salvato un luogo e le cui notifiche sono attive, in base a quanto sono distanti gli indici di qualità tra il luogo salvato e il luogo in generale. -
Uses of Utente in com.is.findyourplace.service.gestioneAmministratori
Methods in com.is.findyourplace.service.gestioneAmministratori with parameters of type UtenteModifier and TypeMethodDescriptionvoidManageUsersService.updateUtentePassword(Utente utente, String password) Aggiorna l'username di un utente.voidManageUsersServiceImpl.updateUtentePassword(Utente utente, String password) voidManageUsersService.updateUtenteUsername(Utente utente) Aggiorna l'username di un utente.voidManageUsersServiceImpl.updateUtenteUsername(Utente utente) -
Uses of Utente in com.is.findyourplace.service.gestioneRicerca
Methods in com.is.findyourplace.service.gestioneRicerca with parameters of type UtenteModifier and TypeMethodDescriptionvoidSavedPlacesService.savePreferito(Utente utente, Luogo luogo) Salva un luogo tra i preferiti fi un utente.voidSavedPlacesServiceImpl.savePreferito(Utente utente, Luogo luogo) -
Uses of Utente in com.is.findyourplace.service.gestioneUtenza
Methods in com.is.findyourplace.service.gestioneUtenza that return UtenteModifier and TypeMethodDescriptionAccountService.findByUsernameOrEmail(String username) Trova utente tramite username o email.AccountServiceImpl.findByUsernameOrEmail(String username) Methods in com.is.findyourplace.service.gestioneUtenza with parameters of type UtenteModifier and TypeMethodDescriptionProfileService.createPreferenze(Utente utente) Crea Preferenze se un Utente non le possiede.ProfileServiceImpl.createPreferenze(Utente utente) ProfileService.findPrefByUtente(Utente utente) Trova Preferenze di un Utente.ProfileServiceImpl.findPrefByUtente(Utente utente)