Uses of Record Class
com.v1rex.liftnexus.loadunit.dto.LoadUnitResponse
Packages that use LoadUnitResponse
Package
Description
-
Uses of LoadUnitResponse in com.v1rex.liftnexus.loadunit.controller
Methods in com.v1rex.liftnexus.loadunit.controller that return types with arguments of type LoadUnitResponseModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<LoadUnitResponse> LoadUnitController.createLoadUnit(@Valid LoadUnitRequest request) org.springframework.http.ResponseEntity<org.springframework.data.domain.Page<LoadUnitResponse>> LoadUnitController.findAll(org.springframework.data.domain.Pageable pageable) org.springframework.http.ResponseEntity<LoadUnitResponse> org.springframework.http.ResponseEntity<org.springframework.data.domain.Page<LoadUnitResponse>> LoadUnitController.findByStatus(LoadUnitStatus status, org.springframework.data.domain.Pageable pageable) org.springframework.http.ResponseEntity<LoadUnitResponse> LoadUnitController.findByTrackingCode(String trackingCode) -
Uses of LoadUnitResponse in com.v1rex.liftnexus.loadunit.mapper
Methods in com.v1rex.liftnexus.loadunit.mapper that return LoadUnitResponse -
Uses of LoadUnitResponse in com.v1rex.liftnexus.loadunit.service
Methods in com.v1rex.liftnexus.loadunit.service that return LoadUnitResponseModifier and TypeMethodDescriptionLoadUnitService.createLoadUnit(LoadUnitRequest request) Creates a new load unit and persists it to the database.Retrieves a load unit by its database ID and returns it as a DTO.LoadUnitService.findByTrackingCode(String trackingCode) Retrieves a load unit by its unique tracking code and returns it as a DTO.Methods in com.v1rex.liftnexus.loadunit.service that return types with arguments of type LoadUnitResponseModifier and TypeMethodDescriptionorg.springframework.data.domain.Page<LoadUnitResponse> LoadUnitService.findAll(org.springframework.data.domain.Pageable pageable) Returns a paginated list of all load units as DTOs.org.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.