Package cronapi.rest
Class DashboardREST
- java.lang.Object
-
- cronapi.rest.DashboardREST
-
@RestController @RequestMapping("/api/rest") public class DashboardREST extends Object
-
-
Constructor Summary
Constructors Constructor Description DashboardREST(DashboardService dashboardService)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.springframework.http.ResponseEntity<String>getContentAsString(DashboardFront dashboardFront, javax.servlet.http.HttpServletResponse response)org.springframework.http.ResponseEntity<DashboardFront>getReport(DashboardFront dashboardFront)
-
-
-
Constructor Detail
-
DashboardREST
@Autowired public DashboardREST(DashboardService dashboardService)
-
-
Method Detail
-
getReport
@RequestMapping(value="/dashboard", method=POST, produces="application/json") public org.springframework.http.ResponseEntity<DashboardFront> getReport(@RequestBody DashboardFront dashboardFront)
-
getContentAsString
@RequestMapping(value="/dashboard/contentasstring", method=POST, produces="text/plain") public org.springframework.http.ResponseEntity<String> getContentAsString(@RequestBody DashboardFront dashboardFront, javax.servlet.http.HttpServletResponse response)
-
-