Class TigerAdminUiController
- java.lang.Object
-
- de.gematik.test.tiger.admin.controller.TigerAdminUiController
-
@Controller public class TigerAdminUiController extends Object
-
-
Constructor Summary
Constructors Constructor Description TigerAdminUiController()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetConfigScheme()StringgetManualPage()org.springframework.http.ResponseEntity<byte[]>getManualPageExampleFile(String exampleFile)org.springframework.http.ResponseEntity<byte[]>getManualPageMediaPNG(String mediaFile)org.springframework.http.ResponseEntity<byte[]>getManualPageMediaSVG(String mediaFile)org.springframework.http.ResponseEntity<byte[]>getManualPageSVG(String mediaFile)StringgetStartPage()StringgetTemplates()ConfigurationopenYamlFile(String file)StringsaveYamlFile(String jsonStr)
-
-
-
Method Detail
-
getStartPage
@GetMapping("/") public String getStartPage()
-
getManualPage
@GetMapping(value="/tiger_user_manual.html", produces="text/html") @ResponseBody public String getManualPage()
-
getManualPageMediaSVG
@GetMapping(value="media/{mediafile}.svg", produces="image/svg+xml") public org.springframework.http.ResponseEntity<byte[]> getManualPageMediaSVG(@PathVariable("mediafile") String mediaFile) throws IOException- Throws:
IOException
-
getManualPageSVG
@GetMapping(value="{svgfile}.svg", produces="image/svg+xml") public org.springframework.http.ResponseEntity<byte[]> getManualPageSVG(@PathVariable("svgfile") String mediaFile) throws IOException- Throws:
IOException
-
getManualPageMediaPNG
@GetMapping(value="/media/{mediafile}.png", produces="image/png") public org.springframework.http.ResponseEntity<byte[]> getManualPageMediaPNG(@PathVariable("mediafile") String mediaFile) throws IOException- Throws:
IOException
-
getManualPageExampleFile
@GetMapping("/examples/{examplefile}") public org.springframework.http.ResponseEntity<byte[]> getManualPageExampleFile(@PathVariable("examplefile") String exampleFile) throws IOException- Throws:
IOException
-
openYamlFile
@GetMapping(value="/openYamlFile", produces="application/json") @ResponseBody public Configuration openYamlFile(@RequestParam("cfgfile") String file) throws IOException- Throws:
IOException
-
getTemplates
@GetMapping(value="/getTemplates", produces="application/json") @ResponseBody public String getTemplates()
-
getConfigScheme
@GetMapping(value="/getConfigScheme", produces="application/json") @ResponseBody public String getConfigScheme()
-
-