Interface ClassificationReasonsApi
- All Known Subinterfaces:
ClassificationReasonsApiClient
public interface ClassificationReasonsApi
-
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<ClassificationReasonEntry>createClassificationReason(@Valid ClassificationReasonBody classificationReason) org.springframework.http.ResponseEntity<Void>deleteClassificationReason(String classificationReasonId) org.springframework.http.ResponseEntity<ClassificationReasonsPaging>listClassificationReasons(@Min(0L) @Valid Integer skipCount, @Min(1L) @Valid Integer maxItems, @Valid List<String> fields) org.springframework.http.ResponseEntity<ClassificationReasonEntry>showClassificationReasonById(String classificationReasonId) org.springframework.http.ResponseEntity<ClassificationReasonEntry>updateClassificationReason(String classificationReasonId, @Valid ClassificationReasonBody classificationReason)
-
Method Details
-
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
-
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)
-