Class ImageController


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

      • ImageController

        @Autowired
        public ImageController​(ImageService imageService)
    • Method Detail

      • get

        @GetMapping("/session/{sessionId}/image/{imageName}")
        public void get​(@PathVariable("sessionId")
                        com.blueriq.component.api.IAquimaSession session,
                        @PathVariable
                        String imageName,
                        javax.servlet.http.HttpServletResponse httpResponse)
                 throws Exception
        Throws:
        Exception
      • get

        @GetMapping("/session/{sessionId}/image/{imageName}/key/{key}")
        public void get​(@PathVariable("sessionId")
                        com.blueriq.component.api.IAquimaSession session,
                        @PathVariable
                        String imageName,
                        @PathVariable
                        String key,
                        javax.servlet.http.HttpServletResponse httpResponse)
                 throws Exception
        Throws:
        Exception