Uses of Enum Class
com.app.model.Status
Packages that use Status
Package
Description
-
Uses of Status in com.app.controller
Methods in com.app.controller with parameters of type StatusModifier and TypeMethodDescriptionHolidayController.changeStatus
(Long holidayId, Status status) Changes the status of a holiday. -
Uses of Status in com.app.controller.dto.holiday
Methods in com.app.controller.dto.holiday that return StatusModifier and TypeMethodDescriptionHolidayDto.status()
Returns the value of thestatus
record component.HolidaySpecificationDto.status()
Returns the value of thestatus
record component.Constructors in com.app.controller.dto.holiday with parameters of type StatusModifierConstructorDescriptionHolidayDto
(Long id, Long userId, LocalDateTime startDate, LocalDateTime endDate, Status status) Creates an instance of aHolidayDto
record class.HolidaySpecificationDto
(Long id, Long userId, LocalDateTime startDate, LocalDateTime endDate, Status status) Creates an instance of aHolidaySpecificationDto
record class. -
Uses of Status in com.app.model
Subclasses with type arguments of type Status in com.app.modelModifier and TypeClassDescriptionenum
Enumeration representing the status of a process or request.Methods in com.app.model that return Status -
Uses of Status in com.app.persistence.entity
Methods in com.app.persistence.entity with parameters of type StatusModifier and TypeMethodDescriptionHolidayEntity.withStatus
(Status status) Creates a new HolidayEntity with the given status, copying existing fields including id. -
Uses of Status in com.app.persistence.specification.model
Methods in com.app.persistence.specification.model that return StatusModifier and TypeMethodDescriptionHolidaySpecification.status()
Returns the value of thestatus
record component.Constructors in com.app.persistence.specification.model with parameters of type StatusModifierConstructorDescriptionHolidaySpecification
(Long id, Long userId, LocalDateTime startDate, LocalDateTime endDate, Status status) Creates an instance of aHolidaySpecification
record class. -
Uses of Status in com.app.service
Methods in com.app.service with parameters of type StatusModifier and TypeMethodDescriptionHolidayService.changeStatus
(Long id, Status status) Changes the status of an existing holiday request. -
Uses of Status in com.app.service.impl
Methods in com.app.service.impl with parameters of type StatusModifier and TypeMethodDescriptionHolidayServiceImpl.changeStatus
(Long id, Status status) Changes the status of an existing holiday request.