java.lang.Object
org.diabetestechnology.drh.service.http.hub.prime.ux.CgmFileController
@Controller
public class CgmFileController
extends Object
-
Constructor Summary
Constructors
-
Method Summary
cgmFilesList(String studyId,
org.springframework.ui.Model model,
jakarta.servlet.http.HttpServletRequest request)
filesList(String studyId,
org.springframework.ui.Model model,
jakarta.servlet.http.HttpServletRequest request)
fileView(String studyId,
String fileName,
String tableName,
org.springframework.ui.Model model,
jakarta.servlet.http.HttpServletRequest request)
totalfilesList(org.springframework.ui.Model model,
jakarta.servlet.http.HttpServletRequest request)
-
-
Method Details
-
totalfilesList
@GetMapping("/svm/files/list")
public String totalfilesList(org.springframework.ui.Model model,
jakarta.servlet.http.HttpServletRequest request)
-
totalfiles
@GetMapping("/svm/files")
public String totalfiles()
-
filesList
@GetMapping("/svm/files/list/{studyId}")
public String filesList(@PathVariable
String studyId,
org.springframework.ui.Model model,
jakarta.servlet.http.HttpServletRequest request)
-
files
@GetMapping("/svm/files/{studyId}")
public String files(@PathVariable
String studyId)
-
fileView
@GetMapping("/svm/file/view/{studyId}/{fileName}/{tableName}")
public String fileView(@PathVariable
String studyId,
@PathVariable
String fileName,
@PathVariable
String tableName,
org.springframework.ui.Model model,
jakarta.servlet.http.HttpServletRequest request)
-
file
@GetMapping("/svm/file/{studyId}/{fileName}/{tableName}")
public String file(@PathVariable
String studyId,
@PathVariable
String fileName,
@PathVariable
String tableName)
-
getFieldName
@GetMapping("/cgm/field-name/{studyId}/{cgmTable}")
@ResponseBody
public Object getFieldName(@PathVariable
String studyId,
@PathVariable
String cgmTable)
-
cgmFilesList
@GetMapping("/svm/cgm/files/list/{studyId}")
public String cgmFilesList(@PathVariable
String studyId,
org.springframework.ui.Model model,
jakarta.servlet.http.HttpServletRequest request)
-
cgmFiles
@GetMapping("/svm/cgm/files/{studyId}")
public String cgmFiles(@PathVariable
String studyId)
-
studyCgmFileView
@GetMapping("/svm/cgm/file/view/{studyId}/{fileName}/{tableName}")
public String studyCgmFileView(@PathVariable
String studyId,
@PathVariable
String fileName,
@PathVariable
String tableName,
org.springframework.ui.Model model,
jakarta.servlet.http.HttpServletRequest request)