Class AppDeploymentCollectionResource
- java.lang.Object
-
- org.flowable.app.rest.service.api.repository.AppDeploymentCollectionResource
-
@RestController public class AppDeploymentCollectionResource 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 AppDeploymentCollectionResource()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected Stringdecode(String string)DataResponse<AppDeploymentResponse>getDeployments(Map<String,String> allRequestParams)Map<String,String>splitQueryString(String queryString)AppDeploymentResponseuploadDeployment(String tenantId, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
-
-
-
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
-
getDeployments
@GetMapping(value="/app-repository/deployments", produces="application/json") public DataResponse<AppDeploymentResponse> getDeployments(@RequestParam Map<String,String> allRequestParams)
-
uploadDeployment
@PostMapping(value="/app-repository/deployments", produces="application/json", consumes="multipart/form-data") public AppDeploymentResponse uploadDeployment(@RequestParam(value="tenantId",required=false) String tenantId, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
-
-