Class ReceivingOrderFinder

java.lang.Object
org.openwms.core.http.AbstractWebController
org.openwms.wms.receiving.rest.ReceivingOrderFinder

@Validated @MeasuredRestController public class ReceivingOrderFinder extends org.openwms.core.http.AbstractWebController
A ReceivingOrderFinder.
Author:
Heiko Scherrer
  • Field Details

  • Constructor Details

  • Method Details

    • findAll

      @Transactional(readOnly=true) @GetMapping(value="/v1/receiving-orders", produces="application/vnd.openwms.receiving-order-v1+json") public org.springframework.http.ResponseEntity<List<ReceivingOrderVO>> findAll()
    • findOrder

      @Transactional(readOnly=true) @GetMapping(value="/v1/receiving-orders/{pKey}", produces="application/vnd.openwms.receiving-order-v1+json") public org.springframework.http.ResponseEntity<ReceivingOrderVO> findOrder(@PathVariable("pKey") String pKey)
    • findOrderByOrderId

      @Transactional(readOnly=true) @GetMapping(value="/v1/receiving-orders", params="orderId", produces="application/vnd.openwms.receiving-order-v1+json") public org.springframework.http.ResponseEntity<ReceivingOrderVO> findOrderByOrderId(@RequestParam("orderId") String orderId)