Uses of Enum Class
com.v1rex.liftnexus.loadunit.domain.LoadUnitStatus
Packages that use LoadUnitStatus
Package
Description
-
Uses of LoadUnitStatus in com.v1rex.liftnexus.loadunit.controller
Methods in com.v1rex.liftnexus.loadunit.controller with parameters of type LoadUnitStatusModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<org.springframework.data.domain.Page<LoadUnitResponse>> LoadUnitController.findByStatus(LoadUnitStatus status, org.springframework.data.domain.Pageable pageable) -
Uses of LoadUnitStatus in com.v1rex.liftnexus.loadunit.domain
Methods in com.v1rex.liftnexus.loadunit.domain that return LoadUnitStatusModifier and TypeMethodDescriptionstatic LoadUnitStatusReturns the enum constant of this class with the specified name.static LoadUnitStatus[]LoadUnitStatus.values()Returns an array containing the constants of this enum class, in the order they are declared. -
Uses of LoadUnitStatus in com.v1rex.liftnexus.loadunit.dto
Methods in com.v1rex.liftnexus.loadunit.dto that return LoadUnitStatusModifier and TypeMethodDescription@NotNull(message="Initial status is required") LoadUnitStatusLoadUnitRequest.status()Returns the value of thestatusrecord component.LoadUnitResponse.status()Returns the value of thestatusrecord component.Constructors in com.v1rex.liftnexus.loadunit.dto with parameters of type LoadUnitStatusModifierConstructorDescriptionLoadUnitRequest(@NotBlank(message="Tracking code is required") String trackingCode, @jakarta.validation.constraints.Min(value=0L, message="Weight cannot be negative") int weightKg, @NotNull(message="Initial status is required") LoadUnitStatus status, Long currentStorageBinId) Creates an instance of aLoadUnitRequestrecord class.LoadUnitResponse(Long id, String trackingCode, int weightKg, LoadUnitStatus status, Long currentStorageBinId, Long version) Creates an instance of aLoadUnitResponserecord class. -
Uses of LoadUnitStatus in com.v1rex.liftnexus.loadunit.repository
Methods in com.v1rex.liftnexus.loadunit.repository with parameters of type LoadUnitStatusModifier and TypeMethodDescriptionorg.springframework.data.domain.Page<LoadUnit> LoadUnitRepository.findByStatus(LoadUnitStatus status, org.springframework.data.domain.Pageable pageable) -
Uses of LoadUnitStatus in com.v1rex.liftnexus.loadunit.service
Methods in com.v1rex.liftnexus.loadunit.service with parameters of type LoadUnitStatusModifier and TypeMethodDescriptionorg.springframework.data.domain.Page<LoadUnitResponse> LoadUnitService.findByStatus(LoadUnitStatus status, org.springframework.data.domain.Pageable pageable) Returns a paginated list of load units filtered by the givenLoadUnitStatusas DTOs.org.springframework.data.domain.Page<LoadUnit> LoadUnitService.findEntitiesByStatus(LoadUnitStatus status, org.springframework.data.domain.Pageable pageable) Returns a paginated list of load unit entities filtered by the givenLoadUnitStatus.