Package com.aquima.web.api.controller.v2
Class ImageController
java.lang.Object
com.aquima.web.api.controller.v2.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 -
Method Summary
Modifier and TypeMethodDescriptionvoid
get
(com.blueriq.component.api.IAquimaSession session, String imageName, jakarta.servlet.http.HttpServletResponse httpResponse) void
get
(com.blueriq.component.api.IAquimaSession session, String imageName, String key, jakarta.servlet.http.HttpServletResponse httpResponse) Methods inherited from class com.aquima.web.api.controller.ImageBaseController
outputImage
Methods inherited from class com.aquima.web.api.controller.v2.AbstractBaseController
clientParametersException, handleConversionException, handleDecisionTreeNotExposedException, handleEmptySymptomException, handleFlowEndedException, handleForbiddenException, handleFunctionValidationException, handleFunctionValidationException, handleMethodArgumentTypeMismatchException, handleRequestWardException, handleStartApplicationForbiddenException, handleStartShortcutForbiddenException, handleUnauthorizedException, handleUnknownApplicationException, handleUnknownFlowException, handleUnknownFunctionFlowException, handleUnknownLanguageException, handleUnknownModuleException, handleUnknownSessionException, handleUnknownShortcutException, handleUnsupportedOpenApiSpecException, isAuthenticated
-
Constructor Details
-
Method Details
-
get
@GetMapping("/session/{sessionId}/image/{imageName}") public void get(@PathVariable("sessionId") com.blueriq.component.api.IAquimaSession session, @PathVariable String imageName, jakarta.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, jakarta.servlet.http.HttpServletResponse httpResponse) throws Exception - Throws:
Exception
-