Uses of Class
net.andresbustamante.yafoot.users.model.User
Packages that use User
Package
Description
Core adapters API.
Model classes for the core module.
Adapters implementations for the Web core module.
Mapstruct mappers for the Web core app.
Repository API for the users module.
Repository implementations for the users module.
Services API for the users module.
Services implementations for the users module.
Mapstruct mappers for the user administration module.
-
Uses of User in net.andresbustamante.yafoot.core.adapters
Methods in net.andresbustamante.yafoot.core.adapters with parameters of type UserModifier and TypeMethodDescriptionvoidUserManagementAdapter.deleteUser(User user, UserContext context) Deletes an existing user.voidUserManagementAdapter.updateUser(User user, UserContext context) Updates an existing user. -
Uses of User in net.andresbustamante.yafoot.core.model
Subclasses of User in net.andresbustamante.yafoot.core.model -
Uses of User in net.andresbustamante.yafoot.core.web.adapters
Methods in net.andresbustamante.yafoot.core.web.adapters with parameters of type UserModifier and TypeMethodDescriptionvoidInternalUserManagementAdapterImpl.deleteUser(User user, UserContext context) voidInternalUserManagementAdapterImpl.updateUser(User user, UserContext context) -
Uses of User in net.andresbustamante.yafoot.core.web.mappers
Methods in net.andresbustamante.yafoot.core.web.mappers with parameters of type User -
Uses of User in net.andresbustamante.yafoot.users.repository
Methods in net.andresbustamante.yafoot.users.repository that return UserModifier and TypeMethodDescriptionUserRepository.findUserByEmail(String email) Find a user by using his email address.Methods in net.andresbustamante.yafoot.users.repository with parameters of type UserModifier and TypeMethodDescriptionvoidUserRepository.deleteUser(User usr) Deletes a user from active directory.voidUserRepository.updateUser(User usr) Update user's personal details in the active directory. -
Uses of User in net.andresbustamante.yafoot.users.repository.impl
Methods in net.andresbustamante.yafoot.users.repository.impl that return UserMethods in net.andresbustamante.yafoot.users.repository.impl with parameters of type UserModifier and TypeMethodDescriptionvoidKeycloakUserRepositoryImpl.deleteUser(User user) voidKeycloakUserRepositoryImpl.updateUser(User user) -
Uses of User in net.andresbustamante.yafoot.users.services
Methods in net.andresbustamante.yafoot.users.services that return UserModifier and TypeMethodDescriptionUserSearchService.findUserByEmail(String email) Load a user for authentication by using his email address.Methods in net.andresbustamante.yafoot.users.services with parameters of type UserModifier and TypeMethodDescriptionvoidUserManagementService.deleteUser(User user, UserContext ctx) Removes a user from the internal user directory.voidUserManagementService.updateUser(User user, UserContext ctx) Updates a user's details in the active directory. -
Uses of User in net.andresbustamante.yafoot.users.services.impl
Methods in net.andresbustamante.yafoot.users.services.impl that return UserMethods in net.andresbustamante.yafoot.users.services.impl with parameters of type UserModifier and TypeMethodDescriptionvoidUserManagementServiceImpl.deleteUser(User user, UserContext ctx) voidUserManagementServiceImpl.updateUser(User user, UserContext ctx) -
Uses of User in net.andresbustamante.yafoot.users.web.mappers
Methods in net.andresbustamante.yafoot.users.web.mappers that return UserModifier and TypeMethodDescriptionMaps a DTO user to a model user.Methods in net.andresbustamante.yafoot.users.web.mappers with parameters of type User