Uses of Class
org.nentangso.core.domain.NtsUserEntity
-
Packages that use NtsUserEntity Package Description org.nentangso.core.repository Spring Data JPA repositories.org.nentangso.core.service Service layer beans.org.nentangso.core.service.mapper MapStruct mappers for mapping domain objects and Data Transfer Objects. -
-
Uses of NtsUserEntity in org.nentangso.core.repository
Methods in org.nentangso.core.repository that return types with arguments of type NtsUserEntity Modifier and Type Method Description reactor.core.publisher.Flux<NtsUserEntity>NtsUserRepository. findAllByIdNotNull(org.springframework.data.domain.Pageable pageable)reactor.core.publisher.Flux<NtsUserEntity>NtsUserRepository. findAllByIdNotNullAndActivatedIsTrue(org.springframework.data.domain.Pageable pageable)reactor.core.publisher.Mono<NtsUserEntity>NtsUserRepository. findOneByLogin(String login) -
Uses of NtsUserEntity in org.nentangso.core.service
Methods in org.nentangso.core.service that return types with arguments of type NtsUserEntity Modifier and Type Method Description reactor.core.publisher.Mono<NtsUserEntity>NtsUserService. getUserWithAuthoritiesByLogin(String login)reactor.core.publisher.Mono<NtsUserEntity>NtsUserService. saveUser(NtsUserEntity user)reactor.core.publisher.Mono<NtsUserEntity>NtsUserService. saveUser(NtsUserEntity user, boolean forceCreate)Methods in org.nentangso.core.service with parameters of type NtsUserEntity Modifier and Type Method Description reactor.core.publisher.Mono<NtsUserEntity>NtsUserService. saveUser(NtsUserEntity user)reactor.core.publisher.Mono<NtsUserEntity>NtsUserService. saveUser(NtsUserEntity user, boolean forceCreate) -
Uses of NtsUserEntity in org.nentangso.core.service.mapper
Methods in org.nentangso.core.service.mapper that return NtsUserEntity Modifier and Type Method Description NtsUserEntityNtsUserMapper. userDTOToUser(NtsAdminUserDTO userDTO)NtsUserEntityNtsUserMapper. userFromId(String id)Methods in org.nentangso.core.service.mapper that return types with arguments of type NtsUserEntity Modifier and Type Method Description List<NtsUserEntity>NtsUserMapper. userDTOsToUsers(List<NtsAdminUserDTO> userDTOs)Methods in org.nentangso.core.service.mapper with parameters of type NtsUserEntity Modifier and Type Method Description NtsUserDTONtsUserMapper. toDtoId(NtsUserEntity user)NtsUserDTONtsUserMapper. toDtoLogin(NtsUserEntity user)NtsAdminUserDTONtsUserMapper. userToAdminUserDTO(NtsUserEntity user)NtsUserDTONtsUserMapper. userToUserDTO(NtsUserEntity user)Method parameters in org.nentangso.core.service.mapper with type arguments of type NtsUserEntity Modifier and Type Method Description Set<NtsUserDTO>NtsUserMapper. toDtoIdSet(Set<NtsUserEntity> users)Set<NtsUserDTO>NtsUserMapper. toDtoLoginSet(Set<NtsUserEntity> users)List<NtsAdminUserDTO>NtsUserMapper. usersToAdminUserDTOs(List<NtsUserEntity> users)List<NtsUserDTO>NtsUserMapper. usersToUserDTOs(List<NtsUserEntity> users)
-