Interface HvlRToolReportOrderRestService

All Known Implementing Classes:
HvlRToolReportOrderRestController

@Validated @HvlPublicFeignRestService @FeignClient(name="rtoolReportOrderRestService", path="${hvl.report.rtool.service.report-order.path:/report-orders}", url="${hvl.report.rtool.service.report-order.url:${hvl.report.rtool.service.url}}") public interface HvlRToolReportOrderRestService
A restful service which provides specific methods for report order.
  • Method Details

    • getByUuid

      @GetMapping(path="/by-uuid/{uuid}", produces="application/json") tr.com.havelsan.javarch.service.data.HvlResponse<HvlRToolReportOrderModel> getByUuid(@NotBlank @Size(max=36,min=36) @PathVariable("uuid") @NotBlank @Size(max=36,min=36) String uuid)
      Gets report order by uuid.
      Parameters:
      uuid - the uuid
      Returns:
      the hvl response
    • queryDataList

      @PostMapping(path="/data/list", consumes="application/json", produces="application/json") tr.com.havelsan.javarch.service.data.HvlResponse<List<HvlRToolReportOrderDataModel>> queryDataList(@NotNull @Valid @RequestBody @NotNull @Valid HvlRToolReportOrderQueryModel reportOrderQueryModel)
      Returns a list of report order matching the query criteria.
      Parameters:
      reportOrderQueryModel - the report order query model
      Returns:
      the hvl response
    • queryDataPage

      @PostMapping(path="/data/page", consumes="application/json", produces="application/json") tr.com.havelsan.javarch.service.data.HvlResponse<tr.com.havelsan.javarch.data.commons.pageable.HvlPage<HvlRToolReportOrderDataModel>> queryDataPage(@NotNull @Valid @RequestBody @NotNull @Valid HvlRToolReportOrderQueryModel reportOrderQueryModel)
      Returns a page of report order matching the query criteria.
      Parameters:
      reportOrderQueryModel - the report order query model
      Returns:
      the hvl response