Interface DefaultClassificationValuesApi
-
- All Known Subinterfaces:
DefaultClassificationValuesApiClient
public interface DefaultClassificationValuesApi
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.springframework.http.ResponseEntity<String>calculateDefaultDeclassificationDate(String nodeId)org.springframework.http.ResponseEntity<DeclassificationDateRecalculationProcessPaging>declassificationDateRecalculationProcessesGet()org.springframework.http.ResponseEntity<DeclassificationDateRecalculationProcessEntry>declassificationDateRecalculationProcessesPost(@Valid DeclassificationDateRecalculationProcessBody declassificationDateRecalculationProcess)org.springframework.http.ResponseEntity<DeclassificationDateRecalculationProcessEntry>declassificationDateRecalculationProcessesProcessIdGet(String processId)
-
-
-
Method Detail
-
calculateDefaultDeclassificationDate
@RequestMapping(value="/default-classification-values/{nodeId}/calculate-declassification-date", produces="application/json", consumes="", method=POST) org.springframework.http.ResponseEntity<String> calculateDefaultDeclassificationDate(@PathVariable("nodeId") String nodeId)
-
declassificationDateRecalculationProcessesGet
@RequestMapping(value="/declassification-date-recalculation-processes", produces="application/json", consumes="", method=GET) org.springframework.http.ResponseEntity<DeclassificationDateRecalculationProcessPaging> declassificationDateRecalculationProcessesGet()
-
declassificationDateRecalculationProcessesPost
@RequestMapping(value="/declassification-date-recalculation-processes", produces="application/json", consumes="application/json", method=POST) org.springframework.http.ResponseEntity<DeclassificationDateRecalculationProcessEntry> declassificationDateRecalculationProcessesPost(@Valid @RequestBody @Valid DeclassificationDateRecalculationProcessBody declassificationDateRecalculationProcess)
-
declassificationDateRecalculationProcessesProcessIdGet
@RequestMapping(value="/declassification-date-recalculation-processes/{processId}", produces="application/json", consumes="", method=GET) org.springframework.http.ResponseEntity<DeclassificationDateRecalculationProcessEntry> declassificationDateRecalculationProcessesProcessIdGet(@PathVariable("processId") String processId)
-
-