Uses of Class
com.Server.dto.Response.UserResponse
| Package | Description |
|---|---|
| com.Server.controller |
com.Server.controller has all controller use to support client by http protocol.
|
| com.Server.mapper.impl |
com.Server.mapper.impl - mapped dto to entity and reverse.
|
| com.Server.service |
com.Server.service has service used to services on database table available repository interface.
|
| com.Server.service.impl |
com.Server.service.impl has the class witch implement services interface method.
|
-
Uses of UserResponse in com.Server.controller
Methods in com.Server.controller that return types with arguments of type UserResponse Modifier and Type Method Description org.springframework.http.ResponseEntity<UserResponse>UserController. getUser(java.lang.Long id) -
Uses of UserResponse in com.Server.mapper.impl
Methods in com.Server.mapper.impl that return UserResponse Modifier and Type Method Description UserResponseUserMapper. toDto(User user) -
Uses of UserResponse in com.Server.service
Methods in com.Server.service that return UserResponse Modifier and Type Method Description UserResponseUserService. findByEmail(java.lang.String email)Find user on email.UserResponseUserService. findById(java.lang.Long id)Find user on id.UserResponseUserService. findByReservationsIdRent(java.lang.Long id)Find Reservation user on id.Methods in com.Server.service that return types with arguments of type UserResponse Modifier and Type Method Description java.util.List<UserResponse>UserService. findAll()Get all user. -
Uses of UserResponse in com.Server.service.impl
Fields in com.Server.service.impl with type parameters of type UserResponse Modifier and Type Field Description private Mapper<User,UserResponse,UserRequest>UserServiceImpl. userMapperuser mapperMethods in com.Server.service.impl that return UserResponse Modifier and Type Method Description UserResponseUserServiceImpl. findByEmail(java.lang.String email)Find user on email.UserResponseUserServiceImpl. findById(java.lang.Long id)Find user on id.UserResponseUserServiceImpl. findByReservationsIdRent(java.lang.Long id)Find Reservation user on id.Methods in com.Server.service.impl that return types with arguments of type UserResponse Modifier and Type Method Description java.util.List<UserResponse>UserServiceImpl. findAll()Get all user.Constructor parameters in com.Server.service.impl with type arguments of type UserResponse Constructor Description UserServiceImpl(UserRepository userRepository, ReservationRepository reservationRepository, RoleRepository roleRepository, org.springframework.security.crypto.password.PasswordEncoder encoder, SendMail sendMail, ReservationMapper reservationMapper, Mapper<User,UserResponse,UserRequest> userMapper)