Uses of Record Class
com.v1rex.liftnexus.forklift.dto.ForkliftResponse
Packages that use ForkliftResponse
Package
Description
-
Uses of ForkliftResponse in com.v1rex.liftnexus.forklift.controller
Methods in com.v1rex.liftnexus.forklift.controller that return types with arguments of type ForkliftResponseModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<ForkliftResponse> ForkliftController.createForklift(@Valid ForkliftRequest request) org.springframework.http.ResponseEntity<org.springframework.data.domain.Page<ForkliftResponse>> ForkliftController.findAllForklifts(org.springframework.data.domain.Pageable pageable) org.springframework.http.ResponseEntity<org.springframework.data.domain.Page<ForkliftResponse>> ForkliftController.findWithCapacity(@Min(1L) Integer minCapacity, OperationalStatus status, org.springframework.data.domain.Pageable pageable) org.springframework.http.ResponseEntity<ForkliftResponse> ForkliftController.getForkliftById(Long id) org.springframework.http.ResponseEntity<ForkliftResponse> ForkliftController.updateForkliftLocation(Long id, @Valid ForkliftLocationUpdateRequest updateRequest) org.springframework.http.ResponseEntity<ForkliftResponse> ForkliftController.updateOperationalStatus(Long id, OperationalStatus status) -
Uses of ForkliftResponse in com.v1rex.liftnexus.forklift.mapper
Methods in com.v1rex.liftnexus.forklift.mapper that return ForkliftResponse -
Uses of ForkliftResponse in com.v1rex.liftnexus.forklift.service
Methods in com.v1rex.liftnexus.forklift.service that return ForkliftResponseModifier and TypeMethodDescriptionForkliftService.createForklift(ForkliftRequest request) Registers a new forklift in the warehouse fleet.Retrieves a single forklift by its unique identifier.ForkliftService.updateForkliftLocation(Long forkliftId, Long locationId) Moves a forklift to a new storage bin location.ForkliftService.updateOperationalStatus(Long forkliftId, OperationalStatus status) Transitions a forklift's operational status (e.g. fromOFFLINEtoACTIVE).Methods in com.v1rex.liftnexus.forklift.service that return types with arguments of type ForkliftResponseModifier and TypeMethodDescriptionorg.springframework.data.domain.Page<ForkliftResponse> ForkliftService.findAll(org.springframework.data.domain.Pageable pageable) Returns a paginated list of all forklifts in the system.org.springframework.data.domain.Page<ForkliftResponse> ForkliftService.findByStatus(OperationalStatus status, org.springframework.data.domain.Pageable pageable) Searches for forklifts by operational status.org.springframework.data.domain.Page<ForkliftResponse> ForkliftService.findWithCapacityGreaterThan(Integer minCapacity, org.springframework.data.domain.Pageable pageable) Searches for forklifts by minimum lifting capacity or operational status.