Uses of Class
com.Server.dto.Request.ReservationRequest
| 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 ReservationRequest in com.Server.controller
Methods in com.Server.controller with parameters of type ReservationRequest Modifier and Type Method Description org.springframework.http.ResponseEntity<?>ReservationController. addReservation(javax.servlet.http.HttpServletResponse response, @Valid ReservationRequest reservationRequest)This method add new reservation user.org.springframework.http.ResponseEntity<?>ReservationController. addReservationGenerateFile(javax.servlet.http.HttpServletResponse response, @Valid ReservationRequest reservationRequest)This method gnerate resume on reservation This method use endpoint /reservation/pdf. -
Uses of ReservationRequest in com.Server.mapper.impl
Methods in com.Server.mapper.impl with parameters of type ReservationRequest Modifier and Type Method Description ReservationReservationMapper. toEntity(ReservationRequest reservationRequest)ReservationReservationMapper. update(Reservation reservation, ReservationRequest reservationRequest)Method not implement !!! -
Uses of ReservationRequest in com.Server.service
Methods in com.Server.service with parameters of type ReservationRequest Modifier and Type Method Description ReservationReservationService. save(ReservationRequest reservationRequest)Save new reservation -
Uses of ReservationRequest in com.Server.service.impl
Fields in com.Server.service.impl with type parameters of type ReservationRequest Modifier and Type Field Description private Mapper<Reservation,ReservationResponse,ReservationRequest>ReservationServiceImpl. reservationMapperReservation mapperMethods in com.Server.service.impl with parameters of type ReservationRequest Modifier and Type Method Description ReservationReservationServiceImpl. save(ReservationRequest reservationRequest)Save new reservationConstructor parameters in com.Server.service.impl with type arguments of type ReservationRequest Constructor Description ReservationServiceImpl(ReservationRepository reservationRepository, UserRepository userRepository, CarRepository carRepository, LocalizationRepository localizationRepository, SendMailImpl sendMailImpl, Mapper<Reservation,ReservationResponse,ReservationRequest> reservationMapper, SendMail sendMail)