Uses of Record Class
com.app.controller.dto.holiday.HolidayDto
Packages that use HolidayDto
Package
Description
-
Uses of HolidayDto in com.app.controller
Methods in com.app.controller that return types with arguments of type HolidayDtoModifier and TypeMethodDescriptionHolidayController.getHolidays
(HolidaySpecificationDto holidaySpecificationDto) Retrieves holidays filtered by complex criteria.HolidayController.getHolidays
(String token, LocalDateTime startDate, LocalDateTime endDate) Retrieves holidays filtered by optional start and end dates. -
Uses of HolidayDto in com.app.persistence.entity
Methods in com.app.persistence.entity that return HolidayDtoModifier and TypeMethodDescriptionHolidayEntity.toHolidayDto()
Converts this entity to its corresponding DTO. -
Uses of HolidayDto in com.app.service
Methods in com.app.service that return HolidayDtoModifier and TypeMethodDescriptionHolidayService.getHolidayDto
(Long id) Retrieves a holiday DTO by its ID.Methods in com.app.service that return types with arguments of type HolidayDtoModifier and TypeMethodDescriptionHolidayService.getHolidays
(HolidaySpecificationDto holidaySpecificationDto) Retrieves a list of holidays matching the provided specification.HolidayService.getHolidaysByDate
(String token, LocalDateTime startDate, LocalDateTime endDate) Retrieves a list of holidays for the authenticated user between specified dates. -
Uses of HolidayDto in com.app.service.impl
Methods in com.app.service.impl that return HolidayDtoModifier and TypeMethodDescriptionHolidayServiceImpl.getHolidayDto
(Long id) Retrieves a holiday DTO by its ID.Methods in com.app.service.impl that return types with arguments of type HolidayDtoModifier and TypeMethodDescriptionHolidayServiceImpl.getHolidays
(HolidaySpecificationDto holidaySpecificationDto) Retrieves holidays matching given specification criteria.HolidayServiceImpl.getHolidaysByDate
(String token, LocalDateTime startDate, LocalDateTime endDate) Retrieves holidays for a user within a date range.