@RestController public class AppDeploymentCollectionResource extends Object
| Modifier and Type | Field and Description |
|---|---|
protected AppRepositoryService |
appRepositoryService |
protected AppRestResponseFactory |
appRestResponseFactory |
protected AppRestApiInterceptor |
restApiInterceptor |
| Constructor and Description |
|---|
AppDeploymentCollectionResource() |
| Modifier and Type | Method and Description |
|---|---|
protected String |
decode(String string) |
DataResponse<AppDeploymentResponse> |
getDeployments(Map<String,String> allRequestParams) |
Map<String,String> |
splitQueryString(String queryString) |
AppDeploymentResponse |
uploadDeployment(String tenantId,
javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response) |
@Autowired protected AppRestResponseFactory appRestResponseFactory
@Autowired protected AppRepositoryService appRepositoryService
@Autowired(required=false) protected AppRestApiInterceptor restApiInterceptor
@GetMapping(value="/app-repository/deployments",
produces="application/json")
public DataResponse<AppDeploymentResponse> getDeployments(@RequestParam
Map<String,String> allRequestParams)
@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)
Copyright © 2023 Flowable. All rights reserved.