Package cronapi.rest
Class ReportREST
java.lang.Object
cronapi.rest.ReportREST
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<String> getContentAsString(ReportFront reportFront, jakarta.servlet.http.HttpServletResponse response) org.springframework.http.ResponseEntity<DataSourcesInBand> getDataSourcesParams(DataSourcesInBand dataSourcesInBand) org.springframework.http.ResponseEntity<byte[]> getPDF(ReportFront reportFront, jakarta.servlet.http.HttpServletResponse response) org.springframework.http.ResponseEntity<ReportFront> getReport(ReportFront reportFront)
-
Constructor Details
-
ReportREST
-
-
Method Details
-
getReport
@RequestMapping(value="/report", method=POST, produces="application/json") public org.springframework.http.ResponseEntity<ReportFront> getReport(@RequestBody ReportFront reportFront) -
getContentAsString
@RequestMapping(value="/report/contentasstring", method=POST, produces="text/plain") public org.springframework.http.ResponseEntity<String> getContentAsString(@RequestBody ReportFront reportFront, jakarta.servlet.http.HttpServletResponse response) -
getDataSourcesParams
@RequestMapping(value="/report/getdatasourcesparams", method=POST, produces="application/json") public org.springframework.http.ResponseEntity<DataSourcesInBand> getDataSourcesParams(@RequestBody DataSourcesInBand dataSourcesInBand) -
getPDF
@RequestMapping(value="/report/pdf", method=POST, produces="text/plain") public org.springframework.http.ResponseEntity<byte[]> getPDF(@RequestBody ReportFront reportFront, jakarta.servlet.http.HttpServletResponse response)
-