Interface ProductApi


public interface ProductApi
Interface handling operations for Product.
Since:
2302
  • Method Details

    • productCreate

      @RequestMapping(value="/product", produces="application/json;charset=utf-8", consumes="application/json;charset=utf-8", method=POST) org.springframework.http.ResponseEntity<Product> productCreate(@Valid @RequestBody @Valid Product body)
    • productDelete

      @RequestMapping(value="/product/{productId}", produces="application/json;charset=utf-8", method=DELETE) org.springframework.http.ResponseEntity<Void> productDelete(@PathVariable("productId") String productId)
    • productFind

      @RequestMapping(value="/product", produces="application/json;charset=utf-8", method=GET) org.springframework.http.ResponseEntity<List<Product>> productFind(@Valid @RequestParam(value="fields",required=false) @Valid String fields)
    • productGet

      @RequestMapping(value="/product/{productId}", produces="application/json;charset=utf-8", method=GET) org.springframework.http.ResponseEntity<Product> productGet(@PathVariable("productId") String productId, @Valid @RequestParam(value="fields",required=false) @Valid String fields)
    • productPatch

      @RequestMapping(value="/product/{productId}", produces="application/json;charset=utf-8", consumes="application/json;charset=utf-8", method=PATCH) org.springframework.http.ResponseEntity<Product> productPatch(@PathVariable("productId") String productId, @Valid @RequestBody @Valid Product body)