Uses of Class
com.alpaca.entity.User
Packages that use User
Package
Description
-
Uses of User in com.alpaca.entity
Fields in com.alpaca.entity declared as UserModifier and TypeFieldDescriptionprivate UserAdvertiser.userThe User associated with the Advertiser entity.private UserProfile.userThe User associated with this Profile.private UserUserRole.userThe User associated with this UserRole.Constructors in com.alpaca.entity with parameters of type UserModifierConstructorDescriptionAdvertiser(String title, String description, String bannerUrl, String avatarUrl, String publicLocation, String publicUrlLocation, boolean indexed, boolean paid, boolean verified, User user) Constructs an instance of a new Advertiser object with the specified attributes.Constructs an instance of a new Profile object with the specified attributes.Constructs an instance of a new UserRole object with the specified attributes. -
Uses of User in com.alpaca.mapper.impl
Methods in com.alpaca.mapper.impl that return UserModifier and TypeMethodDescriptionUserMapperImpl.toEntity(UserRequestDTO requestDTO) Converts aUserRequestDTOinto aUserentity.Methods in com.alpaca.mapper.impl with parameters of type UserModifier and TypeMethodDescriptionUserMapperImpl.toResponseDTO(User entity) Converts aUserentity into aUserResponseDTO.Method parameters in com.alpaca.mapper.impl with type arguments of type UserModifier and TypeMethodDescriptionUserMapperImpl.toListResponseDTO(Collection<User> entities) Converts a collection ofUserentities into a list ofUserResponseDTO. -
Uses of User in com.alpaca.model
Constructors in com.alpaca.model with parameters of type User -
Uses of User in com.alpaca.persistence
Methods in com.alpaca.persistence that return types with arguments of type UserModifier and TypeMethodDescriptionIUserDAO.findByEmail(String email) Finds a user by their email address. -
Uses of User in com.alpaca.persistence.impl
Methods in com.alpaca.persistence.impl that return UserModifier and TypeMethodDescriptionUserDAOImpl.updateById(User user, UUID id) Updates an existingUseridentified by the given ID with the non-null and non-blank properties provided in the supplieduserobject.Methods in com.alpaca.persistence.impl that return types with arguments of type UserModifier and TypeMethodDescriptionUserDAOImpl.findByEmail(String email) Searches for aUserby email.UserDAOImpl.getEntity()Returns the entity class managed by this DAO.protected GenericRepo<User, UUID> UserDAOImpl.getRepo()Provides the repository used by the generic DAO operations.Methods in com.alpaca.persistence.impl with parameters of type UserModifier and TypeMethodDescriptionbooleanUserDAOImpl.existsByUniqueProperties(User user) Determines whether a user already exists in the database based on its unique properties.UserDAOImpl.updateById(User user, UUID id) Updates an existingUseridentified by the given ID with the non-null and non-blank properties provided in the supplieduserobject. -
Uses of User in com.alpaca.repository
Methods in com.alpaca.repository that return types with arguments of type UserModifier and TypeMethodDescriptionUserRepo.findByEmail(String email) Retrieves a user by their email address. -
Uses of User in com.alpaca.service
Methods in com.alpaca.service that return UserModifier and TypeMethodDescriptionIUserService.findByEmail(String email) Finds a user by their email address.Registers a new User entity in the system.Methods in com.alpaca.service with parameters of type User -
Uses of User in com.alpaca.service.impl
Methods in com.alpaca.service.impl that return UserModifier and TypeMethodDescriptionAuthServiceImpl.checkExistingUser(User user, boolean emailVerified) Updates an existing user's OAuth2 connection status and email verification flag.UserServiceImpl.findByEmail(String email) Retrieves aUserby their email address.Registers a newUserin the system.AuthServiceImpl.registerProfile(User user, String firstName, String lastName, String imageURL) Creates or updates a user's profile.Methods in com.alpaca.service.impl that return types with arguments of type UserModifier and TypeMethodDescriptionprotected IGenericDAO<User, UUID> UserServiceImpl.getDAO()Provides the DAO component used by inherited service operations.Methods in com.alpaca.service.impl with parameters of type UserModifier and TypeMethodDescriptionAuthServiceImpl.checkExistingUser(User user, boolean emailVerified) Updates an existing user's OAuth2 connection status and email verification flag.Registers a newUserin the system.AuthServiceImpl.registerProfile(User user, String firstName, String lastName, String imageURL) Creates or updates a user's profile.