Class AppDeploymentResource
- java.lang.Object
-
- org.flowable.app.rest.service.api.repository.AppDeploymentResource
-
@RestController public class AppDeploymentResource extends Object
- Author:
- Tijs Rademakers
-
-
Field Summary
Fields Modifier and Type Field Description protected org.flowable.app.api.AppRepositoryServiceappRepositoryServiceprotected AppRestResponseFactoryappRestResponseFactoryprotected AppRestApiInterceptorrestApiInterceptor
-
Constructor Summary
Constructors Constructor Description AppDeploymentResource()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voiddeleteAppDeployment(String deploymentId, javax.servlet.http.HttpServletResponse response)AppDeploymentResponsegetAppDeployment(String deploymentId)
-
-
-
Field Detail
-
appRestResponseFactory
@Autowired protected AppRestResponseFactory appRestResponseFactory
-
appRepositoryService
@Autowired protected org.flowable.app.api.AppRepositoryService appRepositoryService
-
restApiInterceptor
@Autowired(required=false) protected AppRestApiInterceptor restApiInterceptor
-
-
Method Detail
-
getAppDeployment
@GetMapping(value="/app-repository/deployments/{deploymentId}", produces="application/json") public AppDeploymentResponse getAppDeployment(@PathVariable String deploymentId)
-
deleteAppDeployment
@DeleteMapping(value="/app-repository/deployments/{deploymentId}", produces="application/json") public void deleteAppDeployment(@PathVariable String deploymentId, javax.servlet.http.HttpServletResponse response)
-
-