Class HelpController


  • @Controller
    @RequestMapping("/app/help")
    public class HelpController
    extends Object
    • Constructor Detail

      • HelpController

        public HelpController()
    • Method Detail

      • helpAsHTML

        @GetMapping(value="/help-{lang}.html",
                    produces="text/html")
        @ResponseBody
        public String helpAsHTML​(@PathVariable
                                 String lang)
                          throws IOException
        Throws:
        IOException
      • helpAsMD

        @GetMapping(value="/help-{lang}.md",
                    produces="text/markdown; charset=UTF-8")
        @ResponseBody
        public String helpAsMD​(@PathVariable
                               String lang)
                        throws IOException
        Throws:
        IOException