Uses of Enum Class
com.v1rex.liftnexus.transportorder.domain.TransportOrderStatus
Packages that use TransportOrderStatus
Package
Description
-
Uses of TransportOrderStatus in com.v1rex.liftnexus.transportorder.controller
Methods in com.v1rex.liftnexus.transportorder.controller with parameters of type TransportOrderStatusModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<org.springframework.data.domain.Page<TransportOrderResponse>> TransportOrderController.searchOrders(TransportOrderStatus status, @Min(1L) Integer minWeight, org.springframework.data.domain.Pageable pageable) -
Uses of TransportOrderStatus in com.v1rex.liftnexus.transportorder.domain
Methods in com.v1rex.liftnexus.transportorder.domain that return TransportOrderStatusModifier and TypeMethodDescriptionstatic TransportOrderStatusReturns the enum constant of this class with the specified name.static TransportOrderStatus[]TransportOrderStatus.values()Returns an array containing the constants of this enum class, in the order they are declared. -
Uses of TransportOrderStatus in com.v1rex.liftnexus.transportorder.dto
Methods in com.v1rex.liftnexus.transportorder.dto that return TransportOrderStatusModifier and TypeMethodDescriptionTransportOrderResponse.status()Returns the value of thestatusrecord component.@NotNull TransportOrderStatusTransportOrderStatusUpdateRequest.status()Returns the value of thestatusrecord component.Constructors in com.v1rex.liftnexus.transportorder.dto with parameters of type TransportOrderStatusModifierConstructorDescriptionTransportOrderResponse(Long id, String trackingCode, Long targetLoadUnitId, Long targetBinId, Long sourceBinId, EquipmentType requiredEquipment, TransportOrderStatus status, Long assignedForkliftId) Creates an instance of aTransportOrderResponserecord class.TransportOrderStatusUpdateRequest(@NotNull TransportOrderStatus status) Creates an instance of aTransportOrderStatusUpdateRequestrecord class. -
Uses of TransportOrderStatus in com.v1rex.liftnexus.transportorder.repository
Methods in com.v1rex.liftnexus.transportorder.repository with parameters of type TransportOrderStatusModifier and TypeMethodDescriptionorg.springframework.data.domain.Page<TransportOrder> TransportOrderRepository.findByStatus(TransportOrderStatus status, org.springframework.data.domain.Pageable pageable) org.springframework.data.domain.Page<TransportOrder> TransportOrderRepository.searchOrders(TransportOrderStatus status, Integer minWeight, org.springframework.data.domain.Pageable pageable) -
Uses of TransportOrderStatus in com.v1rex.liftnexus.transportorder.service
Methods in com.v1rex.liftnexus.transportorder.service with parameters of type TransportOrderStatusModifier and TypeMethodDescriptionorg.springframework.data.domain.Page<TransportOrderResponse> TransportOrderService.searchOrders(TransportOrderStatus status, Integer minWeight, org.springframework.data.domain.Pageable pageable) Searches for transport orders with optional filters and pagination.