Class TigerAdminUiController


  • @Controller
    public class TigerAdminUiController
    extends Object
    • Constructor Detail

      • TigerAdminUiController

        public TigerAdminUiController()
    • 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()
      • saveYamlFile

        @PostMapping(value="/saveYamlFile",
                     produces="application/json")
        @ResponseBody
        public String saveYamlFile​(@RequestBody
                                   String jsonStr)