Uses of Class
info.ejava.assignments.api.houserenters.dto.houses.HouseSearchParams
Packages that use HouseSearchParams
Package
Description
-
Uses of HouseSearchParams in info.ejava.assignments.api.houserenters.client.houses
Methods in info.ejava.assignments.api.houserenters.client.houses with parameters of type HouseSearchParamsModifier 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) protected org.springframework.web.util.UriBuilder
HousesAPIClient.makeRequestParams
(org.springframework.web.util.UriComponentsBuilder uriBuilder, HouseSearchParams searchParams, org.springframework.data.domain.Pageable pageable) -
Uses of HouseSearchParams in info.ejava.assignments.api.houserenters.dto.houses
Methods in info.ejava.assignments.api.houserenters.dto.houses that return HouseSearchParamsModifier and TypeMethodDescriptionHouseSearchParams.bedroomsWithin
(int minInclusive, int maxInclusive) HouseSearchParams.dailyRateWithin
(int minInclusive, int maxExclusive) static HouseSearchParams
HouseSearchParams.peopleWithin
(int minInclusive, int maxInclusive) HouseSearchParams.usingProbe
(HouseDTO houseDTO) -
Uses of HouseSearchParams in info.ejava.assignments.api.houserenters.svc.houses
Methods in info.ejava.assignments.api.houserenters.svc.houses with parameters of type HouseSearchParamsModifier and TypeMethodDescriptionorg.springframework.data.domain.Page
<HouseDTO> HousesService.findHousesBy
(HouseSearchParams searchParams, org.springframework.data.domain.Pageable pageable) org.springframework.data.domain.Page
<HouseDTO> HousesServiceDTORepoImpl.findHousesBy
(HouseSearchParams searchParams, org.springframework.data.domain.Pageable pageable) This method is constrained to searching for one property in order the keep the interface with the DAO simple and consistent with dynamic SpringData repository interfaces.