Class StudyDashboardController
java.lang.Object
org.diabetestechnology.drh.service.http.pg.ux.StudyDashboardController
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity
<?> getAverageAgeForDashboard
(String extension) org.springframework.http.ResponseEntity
<?> getFemalePercentage
(String extension) org.springframework.http.ResponseEntity
<?> getTotalParticipants
(String extension)
-
Constructor Details
-
StudyDashboardController
-
-
Method Details
-
getTotalParticipants
@GetMapping(value="/research-study/allstudy-vanity-metrics/total-number-of-participants.{extension}", produces="text/html") @ResponseBody public org.springframework.http.ResponseEntity<?> getTotalParticipants(@PathVariable String extension) -
getFemalePercentage
@GetMapping(value="/research-study/allstudy-vanity-metrics/female-percent.{extension}", produces="text/html") @ResponseBody public org.springframework.http.ResponseEntity<?> getFemalePercentage(@PathVariable String extension) -
getAverageAgeForDashboard
@GetMapping(value="/research-study/allstudy-vanity-metrics/average-age.{extension}", produces="text/html") @ResponseBody public org.springframework.http.ResponseEntity<?> getAverageAgeForDashboard(@PathVariable String extension)
-