Class DocumentController


  • @Controller("v2ApiDocumentController")
    @RequestMapping(path="/api/v2",
                    produces="application/json")
    @ServerContext
    public class DocumentController
    extends AbstractBaseController
    Since:
    11.0
    • Constructor Detail

      • DocumentController

        @Autowired
        public DocumentController​(DocumentService documentService)
    • Method Detail

      • renderDocument

        @SendRedirectUponException
        @GetMapping("/session/{sessionId}/document/{documentName}/{type}")
        public void renderDocument​(@PathVariable("sessionId")
                                   com.blueriq.component.api.IAquimaSession session,
                                   @PathVariable
                                   String documentName,
                                   @PathVariable
                                   String type,
                                   javax.servlet.http.HttpServletResponse httpResponse)
                            throws Exception
        Throws:
        Exception
      • renderPage

        @SendRedirectUponException
        @GetMapping("/session/{sessionId}/document/page/{pageName}/{type}")
        public void renderPage​(@PathVariable("sessionId")
                               com.blueriq.component.api.IAquimaSession session,
                               @PathVariable
                               String pageName,
                               @PathVariable
                               String type,
                               javax.servlet.http.HttpServletResponse httpResponse)
                        throws Exception
        Throws:
        Exception