Class ShippingUIController

java.lang.Object
org.openwms.core.http.AbstractWebController
org.openwms.wms.shipping.ui.ShippingUIController

@Validated @RestController public class ShippingUIController extends org.openwms.core.http.AbstractWebController
A ShippingController.
Author:
Heiko Scherrer
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    private final ShippingUIService
     
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    org.springframework.http.ResponseEntity<List<ShippingOrderVO>>
    findInStates(@NotNull List<String> states)
     
    org.springframework.http.ResponseEntity<List<ShippingOrderVO>>
    findInStatesMinimum(@NotNull List<String> states)
     
    org.springframework.http.ResponseEntity<org.openwms.core.http.Index>
     

    Methods inherited from class org.openwms.core.http.AbstractWebController

    buildNOKResponse, buildNOKResponseWithKey, buildOKResponse, buildResponse, buildResponse, getLocationForCreatedResource, getLocationURIForCreatedResource, handleBehaviorAwareException, handleBusinessRuntimeException, handleConstraintViolationException, handleException, handleHttpBusinessException, handleTechnicalRuntimeException, handleValidationException, IllegalArgumentException, translate

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

  • Constructor Details

  • Method Details

    • index

      @GetMapping("/v1/ui/shipping-orders/index") public org.springframework.http.ResponseEntity<org.openwms.core.http.Index> index()
    • findInStates

      @GetMapping(value="/v1/ui/shipping-orders", params="states") public org.springframework.http.ResponseEntity<List<ShippingOrderVO>> findInStates(@NotNull @RequestParam("states") @NotNull List<String> states)
    • findInStatesMinimum

      @GetMapping(value="/v1/ui/shipping-orders", params="states", produces="application/vnd.openwms.shipping-order-v1-minimum+json") public org.springframework.http.ResponseEntity<List<ShippingOrderVO>> findInStatesMinimum(@NotNull @RequestParam("states") @NotNull List<String> states)