Uses of Class
info.ejava.assignments.api.houserenters.dto.houses.HouseDTO
Packages that use HouseDTO
Package
Description
-
Uses of HouseDTO in info.ejava_student.starter.assignment2.api.houserentals.client
Methods in info.ejava_student.starter.assignment2.api.houserentals.client with parameters of type HouseDTOConstructors in info.ejava_student.starter.assignment2.api.houserentals.client with parameters of type HouseDTOModifierConstructorDescriptionHouseRentalDTO
(HouseDTO house, RenterDTO renter, TimePeriod timePeriod) -
Uses of HouseDTO in info.ejava.assignments.api.houserenters.client.houses
Methods in info.ejava.assignments.api.houserenters.client.houses that return types with arguments of type HouseDTOModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity
<HouseDTO> HousesAPI.createHouse
(HouseDTO house) org.springframework.http.ResponseEntity
<HouseDTO> HousesAPIClient.createHouse
(HouseDTO house) org.springframework.http.ResponseEntity
<HouseDTO> org.springframework.http.ResponseEntity
<HouseDTO> org.springframework.http.ResponseEntity
<HouseDTO> HousesAPI.updateHouse
(String id, HouseDTO house) org.springframework.http.ResponseEntity
<HouseDTO> HousesAPIClient.updateHouse
(String id, HouseDTO house) Methods in info.ejava.assignments.api.houserenters.client.houses with parameters of type HouseDTOModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity
<HouseDTO> HousesAPI.createHouse
(HouseDTO house) org.springframework.http.ResponseEntity
<HouseDTO> HousesAPIClient.createHouse
(HouseDTO house) org.springframework.http.ResponseEntity
<HouseDTO> HousesAPI.updateHouse
(String id, HouseDTO house) org.springframework.http.ResponseEntity
<HouseDTO> HousesAPIClient.updateHouse
(String id, HouseDTO house) -
Uses of HouseDTO in info.ejava.assignments.api.houserenters.dto.houses
Fields in info.ejava.assignments.api.houserenters.dto.houses with type parameters of type HouseDTOMethods in info.ejava.assignments.api.houserenters.dto.houses that return HouseDTOMethods in info.ejava.assignments.api.houserenters.dto.houses that return types with arguments of type HouseDTOModifier and TypeMethodDescriptionMethods in info.ejava.assignments.api.houserenters.dto.houses with parameters of type HouseDTOModifier and TypeMethodDescriptionstatic HouseSearchParams
HouseSearchParams.usingProbe
(HouseDTO houseDTO) -
Uses of HouseDTO in info.ejava.assignments.api.houserenters.svc.houses
Fields in info.ejava.assignments.api.houserenters.svc.houses with type parameters of type HouseDTOMethods in info.ejava.assignments.api.houserenters.svc.houses that return HouseDTOModifier and TypeMethodDescriptionHousesService.createHouse
(HouseDTO newHouse) HousesServiceDTORepoImpl.createHouse
(HouseDTO newHouse) HousesService.updateHouse
(String id, HouseDTO house) HousesServiceDTORepoImpl.updateHouse
(String id, HouseDTO updateHouse) Methods in info.ejava.assignments.api.houserenters.svc.houses that return types with arguments of type HouseDTOModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity
<HouseDTO> HousesController.createHouse
(HouseDTO house) protected org.springframework.data.domain.Page
<HouseDTO> HousesDTORepositoryMapImpl.find
(Predicate<HouseDTO> predicate, org.springframework.data.domain.Pageable pageable) Return a page of matching houses.org.springframework.data.domain.Page
<HouseDTO> HousesDTORepository.findAll
(org.springframework.data.domain.Example<HouseDTO> example, org.springframework.data.domain.Pageable pageable) org.springframework.data.domain.Page
<HouseDTO> HousesDTORepository.findAll
(org.springframework.data.domain.Pageable pageable) org.springframework.data.domain.Page
<HouseDTO> HousesDTORepositoryMapImpl.findAll
(org.springframework.data.domain.Example<HouseDTO> example, org.springframework.data.domain.Pageable pageable) Returns houses that match the provided example prototype.org.springframework.data.domain.Page
<HouseDTO> HousesDTORepositoryMapImpl.findAll
(org.springframework.data.domain.Pageable pageable) org.springframework.data.domain.Page
<HouseDTO> HousesDTORepository.findByBedroomsBetween
(int minBedrooms, int maxBedrooms, org.springframework.data.domain.Pageable pageable) org.springframework.data.domain.Page
<HouseDTO> HousesDTORepositoryMapImpl.findByBedroomsBetween
(int minBedrooms, int maxBedrooms, org.springframework.data.domain.Pageable pageable) Return houses matching the bedroom count.org.springframework.data.domain.Page
<HouseDTO> HousesDTORepository.findByDailyRateBetween
(BigDecimal minDailyRate, BigDecimal maxDailyRate, org.springframework.data.domain.Pageable pageable) org.springframework.data.domain.Page
<HouseDTO> HousesDTORepositoryMapImpl.findByDailyRateBetween
(BigDecimal minDailyRate, BigDecimal maxDailyRate, org.springframework.data.domain.Pageable pageable) Return houses matching the dailyRate.org.springframework.data.domain.Page
<HouseDTO> HousesDTORepository.findByPeopleBetween
(int minPeople, int maxPeople, org.springframework.data.domain.Pageable pageable) org.springframework.data.domain.Page
<HouseDTO> HousesDTORepositoryMapImpl.findByPeopleBetween
(int minPeople, int maxPeople, org.springframework.data.domain.Pageable pageable) Return houses matching the people count.org.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.org.springframework.http.ResponseEntity
<HouseDTO> org.springframework.http.ResponseEntity
<HouseDTO> HousesController.updateHouse
(String id, HouseDTO houseUpdate) Methods in info.ejava.assignments.api.houserenters.svc.houses with parameters of type HouseDTOModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity
<HouseDTO> HousesController.createHouse
(HouseDTO house) HousesService.createHouse
(HouseDTO newHouse) HousesServiceDTORepoImpl.createHouse
(HouseDTO newHouse) org.springframework.http.ResponseEntity
<HouseDTO> HousesController.updateHouse
(String id, HouseDTO houseUpdate) HousesService.updateHouse
(String id, HouseDTO house) HousesServiceDTORepoImpl.updateHouse
(String id, HouseDTO updateHouse) Method parameters in info.ejava.assignments.api.houserenters.svc.houses with type arguments of type HouseDTOModifier and TypeMethodDescriptionprotected org.springframework.data.domain.Page
<HouseDTO> HousesDTORepositoryMapImpl.find
(Predicate<HouseDTO> predicate, org.springframework.data.domain.Pageable pageable) Return a page of matching houses.org.springframework.data.domain.Page
<HouseDTO> HousesDTORepository.findAll
(org.springframework.data.domain.Example<HouseDTO> example, org.springframework.data.domain.Pageable pageable) org.springframework.data.domain.Page
<HouseDTO> HousesDTORepositoryMapImpl.findAll
(org.springframework.data.domain.Example<HouseDTO> example, org.springframework.data.domain.Pageable pageable) Returns houses that match the provided example prototype.