Uses of Class
com.Server.dto.Response.CarResponse
| Package | Description |
|---|---|
| com.Server.controller |
com.Server.controller has all controller use to support client by http protocol.
|
| com.Server.dto.Response |
com.Server.dto.Response has class use to Response data with server.
|
| 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 CarResponse in com.Server.controller
Methods in com.Server.controller that return types with arguments of type CarResponse Modifier and Type Method Description org.springframework.http.ResponseEntity<java.util.List<CarResponse>>CarController. showCarAll()This method get all car. -
Uses of CarResponse in com.Server.dto.Response
Fields in com.Server.dto.Response declared as CarResponse Modifier and Type Field Description private CarResponseReservationResponse. carResponsecar response -
Uses of CarResponse in com.Server.mapper.impl
Methods in com.Server.mapper.impl that return CarResponse Modifier and Type Method Description CarResponseCarMapper. toDto(Car car) -
Uses of CarResponse in com.Server.service
Methods in com.Server.service that return CarResponse Modifier and Type Method Description CarResponseCarService. findByIdCar(int id)Method find car on idMethods in com.Server.service that return types with arguments of type CarResponse Modifier and Type Method Description java.util.List<CarResponse>CarService. findAll()Method find all car.java.util.List<CarResponse>CarService. findByLocalizationCity(java.lang.String city)Find car on localization on name city.java.util.List<CarResponse>CarService. findByLocalizationId(java.lang.Long id)Find car on localization. -
Uses of CarResponse in com.Server.service.impl
Fields in com.Server.service.impl with type parameters of type CarResponse Modifier and Type Field Description private Mapper<Car,CarResponse,CarRequest>CarServiceImpl. carMapperCarMapperMethods in com.Server.service.impl that return CarResponse Modifier and Type Method Description CarResponseCarServiceImpl. findByIdCar(int id)Method find car on idMethods in com.Server.service.impl that return types with arguments of type CarResponse Modifier and Type Method Description java.util.List<CarResponse>CarServiceImpl. findAll()Method find all car.java.util.List<CarResponse>CarServiceImpl. findByLocalizationCity(java.lang.String city)Find car on localization on name city.java.util.List<CarResponse>CarServiceImpl. findByLocalizationId(java.lang.Long id)Find car on localization.Constructor parameters in com.Server.service.impl with type arguments of type CarResponse Constructor Description CarServiceImpl(CarRepository carRepository, ReservationRepository reservationRepository, LocalizationRepository localizationRepository, UserRepository userRepository, Mapper<Car,CarResponse,CarRequest> carMapper)