Uses of Class
com.modulink.Model.Utente.UtenteEntity
Packages that use UtenteEntity
Package
Description
-
Uses of UtenteEntity in com.modulink.Controller
Method parameters in com.modulink.Controller with type arguments of type UtenteEntityModifier and TypeMethodDescriptionprotected booleanModuloController.isAccessibleModulo(Optional<UtenteEntity> user) Verifica se l'utente specificato ha i permessi necessari per accedere alle risorse di questo modulo. -
Uses of UtenteEntity in com.modulink.Controller.Login
Methods in com.modulink.Controller.Login with parameters of type UtenteEntityModifier and TypeMethodDescriptionprivate voidLoginController.sendEmailWithOTP(String email, UtenteEntity utenteToFind) Metodo helper privato per generare e inviare un OTP via email. -
Uses of UtenteEntity in com.modulink.Controller.UserModules.GDU
Method parameters in com.modulink.Controller.UserModules.GDU with type arguments of type UtenteEntityModifier and TypeMethodDescriptionstatic List<UserRestApi.UserBasicInfo> UserRestApi.parseUsers(List<UtenteEntity> users) Metodo di utilità per la conversione di una lista di entità Utente in DTO leggeri. -
Uses of UtenteEntity in com.modulink.Model.Eventi
Fields in com.modulink.Model.Eventi declared as UtenteEntityModifier and TypeFieldDescriptionprivate UtenteEntityEventoEntity.creatoreUtente che ha creato l'evento.Methods in com.modulink.Model.Eventi that return UtenteEntityMethods in com.modulink.Model.Eventi with parameters of type UtenteEntityModifier and TypeMethodDescriptionEventoRepository.findAllByUtente(UtenteEntity utente) Recupera tutti gli eventi rilevanti per un determinato utente, sia come creatore che come partecipante.EventoService.findAllByUtente(UtenteEntity utente) Recupera la lista di eventi pertinenti a un utente specifico.voidEventoEntity.setCreatore(UtenteEntity creatore) Imposta il creatore dell'evento. -
Uses of UtenteEntity in com.modulink.Model.Modulo
Methods in com.modulink.Model.Modulo with parameters of type UtenteEntityModifier and TypeMethodDescriptionModuloRepository.findModuliByUtente(UtenteEntity utente) Recupera l'elenco dei moduli a cui un determinato utente ha accesso.ModuloService.findModuliByUtente(UtenteEntity utente) Recupera la lista dei moduli accessibili da un utente, con supporto caching.booleanModuloService.isAccessibleModulo(int id, UtenteEntity utente) Verifica l'accessibilità puntuale di un modulo, con caching.ModuloRepository.isModuloAccessible(int id, UtenteEntity utente) Verifica puntuale se uno specifico modulo è accessibile da un utente. -
Uses of UtenteEntity in com.modulink.Model.OTP
Fields in com.modulink.Model.OTP with type parameters of type UtenteEntityModifier and TypeFieldDescriptionprivate static final HashMap<String, UtenteEntity> OTPManager.otpUserEntityMapMappa di associazione tra l'indirizzo email dell'utente e l'entità utente completa.Methods in com.modulink.Model.OTP that return UtenteEntityModifier and TypeMethodDescriptionOTPManager.getOTPUser(String email) Recupera l'entità utente associata a una sessione OTP attiva.Methods in com.modulink.Model.OTP with parameters of type UtenteEntityModifier and TypeMethodDescriptionvoidOTPManager.addOTP(String email, UtenteEntity utente) Genera e registra un nuovo codice OTP per una specifica email utente. -
Uses of UtenteEntity in com.modulink.Model.Relazioni.Assegnazione
Fields in com.modulink.Model.Relazioni.Assegnazione declared as UtenteEntityModifier and TypeFieldDescriptionprivate UtenteEntityAssegnazioneEntity.utenteRiferimento all'entitàUtenteEntityassociata a questa assegnazione.Methods in com.modulink.Model.Relazioni.Assegnazione that return UtenteEntityModifier and TypeMethodDescriptionAssegnazioneEntity.getUtente()Restituisce l'utente associato a questa assegnazione.Methods in com.modulink.Model.Relazioni.Assegnazione with parameters of type UtenteEntityModifier and TypeMethodDescriptionAssegnazioneRepository.findByUtente(UtenteEntity utente) Trova tutte le assegnazioni associate a uno specifico utente.AssegnazioneService.getTaskAssegnate(UtenteEntity utente) Recupera la lista dei Task assegnati a uno specifico Utente.voidAssegnazioneEntity.setUtente(UtenteEntity utente) Imposta l'utente per questa assegnazione e aggiorna l'ID utente corrispondente.Constructors in com.modulink.Model.Relazioni.Assegnazione with parameters of type UtenteEntityModifierConstructorDescriptionAssegnazioneEntity(TaskEntity task, UtenteEntity utente) Costruttore parametrico per creare una nuova istanza di assegnazione. -
Uses of UtenteEntity in com.modulink.Model.Relazioni.Associazione
Fields in com.modulink.Model.Relazioni.Associazione declared as UtenteEntityModifier and TypeFieldDescriptionprivate UtenteEntityAssociazioneEntity.utenteRiferimento oggettuale all'entitàUtenteEntity.Methods in com.modulink.Model.Relazioni.Associazione that return UtenteEntityModifier and TypeMethodDescriptionAssociazioneEntity.getUtente()Recupera l'oggetto UtenteEntity.Methods in com.modulink.Model.Relazioni.Associazione that return types with arguments of type UtenteEntityModifier and TypeMethodDescriptionAssociazioneService.getAllByRole(RuoloEntity ruolo) Recupera l'elenco di tutti gli utenti che possiedono un determinato ruolo.Methods in com.modulink.Model.Relazioni.Associazione with parameters of type UtenteEntityModifier and TypeMethodDescriptionvoidAssociazioneRepository.removeAllByUtente(UtenteEntity utente) Rimuove tutte le associazioni ruolo correlate a uno specifico utente.Constructors in com.modulink.Model.Relazioni.Associazione with parameters of type UtenteEntityModifierConstructorDescriptionAssociazioneEntity(UtenteEntity utente, RuoloEntity ruolo) Costruttore parametrico per l'istanziazione di una nuova relazione Utente-Ruolo. -
Uses of UtenteEntity in com.modulink.Model.Relazioni.Partecipazione
Fields in com.modulink.Model.Relazioni.Partecipazione declared as UtenteEntityModifier and TypeFieldDescriptionprivate UtenteEntityPartecipazioneEntity.utenteRiferimento all'entità Utente.Methods in com.modulink.Model.Relazioni.Partecipazione that return UtenteEntityModifier and TypeMethodDescriptionPartecipazioneEntity.getUtente()Restituisce l'oggetto Utente associato.Methods in com.modulink.Model.Relazioni.Partecipazione that return types with arguments of type UtenteEntityModifier and TypeMethodDescriptionPartecipazioneService.getUtenteEntitiesByEvento(EventoEntity eventoEntity) Recupera la lista di tutti gli utenti iscritti a un determinato evento.Methods in com.modulink.Model.Relazioni.Partecipazione with parameters of type UtenteEntityModifier and TypeMethodDescriptionvoidPartecipazioneService.Invita(EventoEntity eventoEntity, UtenteEntity utenteEntity) Iscrive (invita) un utente a partecipare a un evento.voidPartecipazioneRepository.removeByUtenteAndEvento(UtenteEntity utente, EventoEntity evento) Rimuove la partecipazione di un utente a un evento specifico (Annulla iscrizione).voidPartecipazioneService.RimuoviInvito(EventoEntity eventoEntity, UtenteEntity utenteEntity) Annulla l'iscrizione (rimuove l'invito) di un utente a un evento.voidPartecipazioneEntity.setUtente(UtenteEntity utente) Associa l'oggetto Utente. -
Uses of UtenteEntity in com.modulink.Model.Ruolo
Method parameters in com.modulink.Model.Ruolo with type arguments of type UtenteEntityModifier and TypeMethodDescriptionvoidRuoloService.updateRoleAssociations(AziendaEntity azienda, int idRole, List<UtenteEntity> users) Sincronizza le associazioni tra un ruolo specifico e una lista di utenti fornita. -
Uses of UtenteEntity in com.modulink.Model.Task
Fields in com.modulink.Model.Task declared as UtenteEntityModifier and TypeFieldDescriptionprivate UtenteEntityTaskEntity.utenteCreatoreRiferimento all'entitàUtenteEntityche ha creato il task.Methods in com.modulink.Model.Task that return UtenteEntityModifier and TypeMethodDescriptionTaskEntity.getUtenteCreatore()Restituisce l'utente creatore del task.Methods in com.modulink.Model.Task with parameters of type UtenteEntityModifier and TypeMethodDescriptionTaskService.findByCreatore(UtenteEntity utente) Trova tutti i task creati da un determinato utente.TaskRepository.findByUtenteCreatore(UtenteEntity utenteCreatore) Trova tutti i task creati da uno specifico utente.voidTaskEntity.setUtenteCreatore(UtenteEntity utenteCreatore) Imposta l'utente creatore del task e aggiorna l'ID utente creatore corrispondente.Constructors in com.modulink.Model.Task with parameters of type UtenteEntityModifierConstructorDescriptionTaskEntity(AziendaEntity azienda, UtenteEntity utenteCreatore, String titolo, int priorita, LocalDate scadenza, LocalDate dataCreazione, LocalDate dataCompletamento) Costruisce un nuovo TaskEntity con i dettagli specificati. -
Uses of UtenteEntity in com.modulink.Model.Utente
Subinterfaces with type arguments of type UtenteEntity in com.modulink.Model.UtenteModifier and TypeInterfaceDescriptioninterfaceRepository per la gestione della persistenza dell'entitàUtenteEntity.Fields in com.modulink.Model.Utente declared as UtenteEntityMethods in com.modulink.Model.Utente that return UtenteEntityModifier and TypeMethodDescriptionCustomUserDetailsService.getByID(int id, int id_azienda) Recupera un singolo utente tramite ID e ID azienda.CustomUserDetails.getUser()Metodo getter aggiuntivo per recuperare l'entità Utente originale.Methods in com.modulink.Model.Utente that return types with arguments of type UtenteEntityModifier and TypeMethodDescriptionUserRepository.findAllByAziendaAndIdUtenteNot(AziendaEntity azienda, int idUtente) Recupera la lista di tutti gli utenti appartenenti a una specifica azienda, escludendo un utente specifico (solitamente l'utente corrente).CustomUserDetailsService.findByEmail(String email) Cerca un utente per email utilizzando la cache.UserRepository.findByEmail(String email) Recupera un'istanza diUtenteEntitybasandosi sull'indirizzo email.CustomUserDetailsService.getAllByAzienda(AziendaEntity aziendaEntity) Recupera tutti gli utenti associati a una specifica azienda, utilizzando la cache.CustomUserDetailsService.getAllByAziendaExcludingUser(AziendaEntity azienda, int idUtente) Recupera la lista di tutti gli utenti di un'azienda, escludendo un utente specifico.UserRepository.getAllByAziendaIs(AziendaEntity azienda) Recupera tutti gli utenti appartenenti ad una specifica azienda.CustomUserDetailsService.getAllUsersFromIDs(List<Integer> ids, int id_azienda) Recupera una lista di utenti a partire da una lista di ID, verificando l'appartenenza all'azienda.Methods in com.modulink.Model.Utente with parameters of type UtenteEntityModifier and TypeMethodDescriptionvoidCustomUserDetailsService.aggiornaUtente(UtenteEntity utente) Aggiorna i dati di un utente esistente e invalida le cache pertinenti.booleanCustomUserDetailsService.isThisaNewUtente(UtenteEntity utente) Verifica se un utente è considerato "nuovo" basandosi sui suoi ruoli.voidCustomUserDetailsService.registraUtente(UtenteEntity nuovoUtente, int idAzienda) Gestisce la registrazione di un nuovo utente con ID calcolato manualmente.voidCustomUserDetailsService.rimuoviUtente(UtenteEntity utente) Rimuove un utente dal sistema e pulisce le cache associate.Constructors in com.modulink.Model.Utente with parameters of type UtenteEntityModifierConstructorDescriptionCostruttore che incapsula l'entità Utente. -
Uses of UtenteEntity in com.modulink.service.UserModules.GDE
Fields in com.modulink.service.UserModules.GDE declared as UtenteEntity -
Uses of UtenteEntity in com.modulink.service.UserModules.GDM
Fields in com.modulink.service.UserModules.GDM declared as UtenteEntity -
Uses of UtenteEntity in com.modulink.service.UserModules.GTM
Fields in com.modulink.service.UserModules.GTM declared as UtenteEntity