Uses of Class
info.ejava.assignments.api.houserenters.dto.houses.HouseListDTO
Packages that use HouseListDTO
Package
Description
-
Uses of HouseListDTO in info.ejava.assignments.api.houserenters.client.houses
Methods in info.ejava.assignments.api.houserenters.client.houses that return types with arguments of type HouseListDTOModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity
<HouseListDTO> HousesAPI.findHousesBy
(HouseSearchParams searchParams, org.springframework.data.domain.Pageable pageable) An example query using a GET and query parameters.org.springframework.http.ResponseEntity
<HouseListDTO> HousesAPIClient.findHousesBy
(HouseSearchParams searchParams, org.springframework.data.domain.Pageable pageable) -
Uses of HouseListDTO in info.ejava.assignments.api.houserenters.svc.houses
Methods in info.ejava.assignments.api.houserenters.svc.houses that return types with arguments of type HouseListDTOModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity
<HouseListDTO> HousesController.findHousesList
(String id, String name, Integer people, Integer bedrooms, BigDecimal dailyRate, Integer minPeople, Integer maxPeople, Integer minBedrooms, Integer maxBedrooms, Integer minDailyRate, Integer maxDailyRate, Integer pageNumber, Integer pageSize) This query endpoint uses non-exact search criteria to form range queries.