Uses of Class
de.trustable.ca3s.core.domain.User
-
Packages that use User Package Description de.trustable.ca3s.core.domain JPA domain objects.de.trustable.ca3s.core.repository Spring Data JPA repositories.de.trustable.ca3s.core.service Service layer beans.de.trustable.ca3s.core.service.dto Data Transfer Objects.de.trustable.ca3s.core.service.mapper MapStruct mappers for mapping domain objects and Data Transfer Objects.de.trustable.ca3s.core.web.rest Spring MVC REST controllers. -
-
Uses of User in de.trustable.ca3s.core.domain
Fields in de.trustable.ca3s.core.domain with type parameters of type User Modifier and Type Field Description static javax.persistence.metamodel.SingularAttribute<User,Boolean>User_. activatedstatic javax.persistence.metamodel.SingularAttribute<User,String>User_. activationKeystatic javax.persistence.metamodel.SetAttribute<User,Authority>User_. authoritiesstatic javax.persistence.metamodel.SingularAttribute<User,String>User_. emailstatic javax.persistence.metamodel.SingularAttribute<User,String>User_. firstNamestatic javax.persistence.metamodel.SingularAttribute<User,Long>User_. idstatic javax.persistence.metamodel.SingularAttribute<User,String>User_. imageUrlstatic javax.persistence.metamodel.SingularAttribute<User,String>User_. langKeystatic javax.persistence.metamodel.SingularAttribute<User,String>User_. lastNamestatic javax.persistence.metamodel.SingularAttribute<User,String>User_. loginstatic javax.persistence.metamodel.SingularAttribute<User,String>User_. passwordstatic javax.persistence.metamodel.SingularAttribute<User,Instant>User_. resetDatestatic javax.persistence.metamodel.SingularAttribute<User,String>User_. resetKey -
Uses of User in de.trustable.ca3s.core.repository
Methods in de.trustable.ca3s.core.repository that return types with arguments of type User Modifier and Type Method Description List<User>UserRepository. findAllByActivatedIsFalseAndActivationKeyIsNotNullAndCreatedDateBefore(Instant dateTime)org.springframework.data.domain.Page<User>UserRepository. findAllByLoginNot(org.springframework.data.domain.Pageable pageable, String login)Optional<User>UserRepository. findOneByActivationKey(String activationKey)Optional<User>UserRepository. findOneByEmailIgnoreCase(String email)Optional<User>UserRepository. findOneByLogin(String login)Optional<User>UserRepository. findOneByResetKey(String resetKey)Optional<User>UserRepository. findOneWithAuthoritiesByEmailIgnoreCase(String email)Optional<User>UserRepository. findOneWithAuthoritiesById(Long id)Optional<User>UserRepository. findOneWithAuthoritiesByLogin(String login) -
Uses of User in de.trustable.ca3s.core.service
Methods in de.trustable.ca3s.core.service that return User Modifier and Type Method Description UserUserService. createUser(UserDTO userDTO)UserUserService. registerUser(UserDTO userDTO, String password)Methods in de.trustable.ca3s.core.service that return types with arguments of type User Modifier and Type Method Description Optional<User>UserService. activateRegistration(String key)Optional<User>UserService. completePasswordReset(String newPassword, String key)Optional<User>UserService. getUserWithAuthorities()Optional<User>UserService. getUserWithAuthorities(Long id)Optional<User>UserService. getUserWithAuthoritiesByLogin(String login)Optional<User>UserService. requestPasswordReset(String mail)Methods in de.trustable.ca3s.core.service with parameters of type User Modifier and Type Method Description voidMailService. sendActivationEmail(User user)voidMailService. sendCreationEmail(User user)voidMailService. sendEmailFromTemplate(User user, String templateName, String titleKey)voidMailService. sendEmailFromTemplate(org.thymeleaf.context.Context context, User user, String templateName, String titleKey)voidMailService. sendEmailFromTemplate(org.thymeleaf.context.Context context, User user, String templateName, String titleKey, String[] args)voidMailService. sendPasswordResetMail(User user) -
Uses of User in de.trustable.ca3s.core.service.dto
Constructors in de.trustable.ca3s.core.service.dto with parameters of type User Constructor Description UserDTO(User user) -
Uses of User in de.trustable.ca3s.core.service.mapper
Methods in de.trustable.ca3s.core.service.mapper that return User Modifier and Type Method Description UserUserMapper. userDTOToUser(UserDTO userDTO)UserUserMapper. userFromId(Long id)Methods in de.trustable.ca3s.core.service.mapper that return types with arguments of type User Modifier and Type Method Description List<User>UserMapper. userDTOsToUsers(List<UserDTO> userDTOs)Methods in de.trustable.ca3s.core.service.mapper with parameters of type User Modifier and Type Method Description UserDTOUserMapper. userToUserDTO(User user)Method parameters in de.trustable.ca3s.core.service.mapper with type arguments of type User Modifier and Type Method Description List<UserDTO>UserMapper. usersToUserDTOs(List<User> users) -
Uses of User in de.trustable.ca3s.core.web.rest
Methods in de.trustable.ca3s.core.web.rest that return types with arguments of type User Modifier and Type Method Description org.springframework.http.ResponseEntity<User>UserResource. createUser(@Valid UserDTO userDTO)POST /users: Creates a new user.
-