Package com.aquima.web.api.controller.v1
Class ImageController
- java.lang.Object
-
- com.aquima.web.api.controller.v1.AbstractBaseController
-
- com.aquima.web.api.controller.ImageBaseController
-
- com.aquima.web.api.controller.v1.ImageController
-
@Controller("apiImageController") @RequestMapping(path="/api/v1", produces="application/json") @ServerContext public class ImageController extends ImageBaseController
-
-
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 rootSession, com.blueriq.component.api.IAquimaSession currentSession, String imageName, String key, javax.servlet.http.HttpServletResponse httpResponse)
void
get(com.blueriq.component.api.IAquimaSession rootSession, com.blueriq.component.api.IAquimaSession currentSession, String imageName, javax.servlet.http.HttpServletResponse httpResponse)
void
getLegacy(com.blueriq.component.api.IAquimaSession currentSession, String imageName, String key, 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("/subscription/{subscriptionId}/session/{sessionId}/image/{imageName}") public void get(@PathVariable("subscriptionId") com.blueriq.component.api.IAquimaSession rootSession, @PathVariable("sessionId") com.blueriq.component.api.IAquimaSession currentSession, @PathVariable String imageName, javax.servlet.http.HttpServletResponse httpResponse) throws Exception
- Throws:
Exception
-
get
@GetMapping("/subscription/{subscriptionId}/session/{sessionId}/image/{imageName}/key/{key}") public void get(@PathVariable("subscriptionId") com.blueriq.component.api.IAquimaSession rootSession, @PathVariable("sessionId") com.blueriq.component.api.IAquimaSession currentSession, @PathVariable String imageName, @PathVariable String key, javax.servlet.http.HttpServletResponse httpResponse) throws Exception
- Throws:
Exception
-
getLegacy
@GetMapping("/session/{sessionId}/image/{imageName}/key/{key}") public void getLegacy(@PathVariable("sessionId") com.blueriq.component.api.IAquimaSession currentSession, @PathVariable String imageName, @PathVariable String key, javax.servlet.http.HttpServletResponse httpResponse) throws Exception
- Throws:
Exception
-
-