Interface ClassificationReasonsApi
-
- All Known Subinterfaces:
ClassificationReasonsApiClient
public interface ClassificationReasonsApi
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.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 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)
-
-