Class SessionReportController

java.lang.Object
org.diabetestechnology.drh.service.http.pg.ux.SessionReportController

@Controller @RequestMapping("/sessions") public class SessionReportController extends Object
  • Constructor Details

  • Method Details

    • getSessionReport

      @GetMapping("/report") @ResponseBody public List<SessionDetails> getSessionReport()
    • listLoggedUsers

      @GetMapping("/active") @ResponseBody public List<Object> listLoggedUsers()
    • getSessionDetails

      @GetMapping("/details") @ResponseBody public Response getSessionDetails()
    • getOrganizationSessionReport

      @GetMapping("/organization/report") @ResponseBody public Response getOrganizationSessionReport(@RequestParam(required=true) String startDate, @RequestParam(required=true) String endDate)
    • getApplicationSessionReport

      @GetMapping("/application/report") @ResponseBody public Response getApplicationSessionReport(@RequestParam(required=true) String startDate, @RequestParam(required=true) String endDate)