Package com.aquima.web.api.controller.v2
Class ImageController
- java.lang.Object
-
- com.aquima.web.api.controller.v1.AbstractBaseController
-
- com.aquima.web.api.controller.ImageBaseController
-
- com.aquima.web.api.controller.v2.ImageController
-
@Controller("v2ApiImageController") @RequestMapping(path="/api/v2", produces="application/json") @ServerContext public class ImageController extends ImageBaseController
- Since:
- 11.0
-
-
Constructor Summary
Constructors Constructor Description ImageController(ImageService imageService)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
get(com.blueriq.component.api.IAquimaSession session, String imageName, String key, javax.servlet.http.HttpServletResponse httpResponse)
void
get(com.blueriq.component.api.IAquimaSession session, String imageName, javax.servlet.http.HttpServletResponse httpResponse)
-
Methods inherited from class com.aquima.web.api.controller.ImageBaseController
outputImage
-
Methods inherited from class com.aquima.web.api.controller.v1.AbstractBaseController
handleConversionException, handleDecisionTreeNotExposedException, handleEmptySymptomException, handleFlowEndedException, handleForbiddenException, handleFunctionParameterException, handleFunctionValidationException, handleFunctionValidationException, handleMethodArgumentTypeMismatchException, handleRequestWardException, handleStartApplicationForbiddenException, handleStartFlowForbiddenException, handleStartShortcutForbiddenException, handleUnauthorizedException, handleUnknownApplicationException, handleUnknownDecisionTreeException, handleUnknownFlowException, handleUnknownFunctionFlowException, handleUnknownLanguageException, handleUnknownModuleException, handleUnknownSessionException, handleUnknownShortcutException, handleUnknownSubscriptionException, handleUnsupportedOpenApiSpecException, isAuthenticated
-
-
-
-
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
-
-