Class ParticipantRowFileController
java.lang.Object
org.diabetestechnology.drh.service.http.pg.ux.ParticipantRowFileController
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionsaveCgmRowData
(ParticipantRowFileRequest request) saveCgmRowFile
(org.springframework.web.multipart.MultipartFile file, String studyId, String organizationPartyId, String participantId)
-
Constructor Details
-
ParticipantRowFileController
public ParticipantRowFileController()
-
-
Method Details
-
saveCgmRowFile
@PostMapping(value="/study-participant/cgm/file", consumes="multipart/form-data") @ResponseBody public Response saveCgmRowFile(@RequestPart("file") @Nonnull org.springframework.web.multipart.MultipartFile file, @Nonnull @RequestParam("studyId") String studyId, @Nonnull @RequestParam("organizationPartyId") String organizationPartyId, @Nonnull @RequestParam("participantId") String participantId) throws Exception - Throws:
Exception
-
saveCgmRowData
@PostMapping("/study-participant/cgm/data") @ResponseBody public Response saveCgmRowData(@RequestBody ParticipantRowFileRequest request) throws Exception - Throws:
Exception
-