Class DocumentController

java.lang.Object
com.aquima.web.api.controller.v2.AbstractBaseController
com.aquima.web.api.controller.v2.DocumentController

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

    • DocumentController Link icon

      @Autowired public DocumentController(DocumentService documentService)
  • Method Details Link icon

    • renderDocument Link icon

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

      @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, jakarta.servlet.http.HttpServletResponse httpResponse) throws Exception
      Throws:
      Exception