Interface ClassificationReasonsApi

    • Method Detail

      • createClassificationReason

        @RequestMapping(value="/classification-reasons",
                        produces="application/json",
                        consumes="application/json",
                        method=POST)
        org.springframework.http.ResponseEntity<ClassificationReasonEntry> createClassificationReason​(@Valid @RequestBody
                                                                                                      @Valid ClassificationReasonBody classificationReason)
      • deleteClassificationReason

        @RequestMapping(value="/classification-reasons/{classificationReasonId}",
                        produces="application/json",
                        consumes="",
                        method=DELETE)
        org.springframework.http.ResponseEntity<Void> deleteClassificationReason​(@PathVariable("classificationReasonId")
                                                                                 String classificationReasonId)
      • listClassificationReasons

        @RequestMapping(value="/classification-reasons",
                        produces="application/json",
                        consumes="",
                        method=GET)
        org.springframework.http.ResponseEntity<ClassificationReasonsPaging> listClassificationReasons​(@Min(0L) @Valid @RequestParam(value="skipCount",required=false)
                                                                                                       @Min(0L) @Valid Integer skipCount,
                                                                                                       @Min(1L) @Valid @RequestParam(value="maxItems",required=false)
                                                                                                       @Min(1L) @Valid Integer maxItems,
                                                                                                       @Valid @RequestParam(value="fields",required=false)
                                                                                                       @Valid List<String> fields)
      • showClassificationReasonById

        @RequestMapping(value="/classification-reasons/{classificationReasonId}",
                        produces="application/json",
                        consumes="",
                        method=GET)
        org.springframework.http.ResponseEntity<ClassificationReasonEntry> showClassificationReasonById​(@PathVariable("classificationReasonId")
                                                                                                        String classificationReasonId)
      • updateClassificationReason

        @RequestMapping(value="/classification-reasons/{classificationReasonId}",
                        produces="application/json",
                        consumes="application/json",
                        method=PUT)
        org.springframework.http.ResponseEntity<ClassificationReasonEntry> updateClassificationReason​(@PathVariable("classificationReasonId")
                                                                                                      String classificationReasonId,
                                                                                                      @Valid @RequestBody
                                                                                                      @Valid ClassificationReasonBody classificationReason)