Class ActionDeploymentResource
java.lang.Object
com.flowable.action.rest.service.api.repository.ActionDeploymentResource
@RestController
public class ActionDeploymentResource
extends java.lang.Object
-
Field Summary
Fields Modifier and Type Field Description protected ActionRepositoryService
actionRepositoryService
protected java.lang.String[]
additionalAdminUsers
protected com.flowable.core.spring.security.interceptor.PlatformSecurityInterceptor
platformSecurityInterceptor
-
Constructor Summary
Constructors Constructor Description ActionDeploymentResource()
-
Method Summary
Modifier and Type Method Description void
deleteActionDeployment(java.lang.String deploymentId, javax.servlet.http.HttpServletResponse response)
ActionDeploymentResponse
getDeployment(java.lang.String deploymentId)
-
Field Details
-
actionRepositoryService
-
additionalAdminUsers
@Value("${flowable.platform.idm.additional-admin-users:}") protected java.lang.String[] additionalAdminUsers -
platformSecurityInterceptor
@Autowired(required=false) protected com.flowable.core.spring.security.interceptor.PlatformSecurityInterceptor platformSecurityInterceptor
-
-
Constructor Details
-
ActionDeploymentResource
public ActionDeploymentResource()
-
-
Method Details
-
getDeployment
@GetMapping(value="/action-repository/deployments/{deploymentId}", produces="application/json") public ActionDeploymentResponse getDeployment(@PathVariable java.lang.String deploymentId) -
deleteActionDeployment
@DeleteMapping(value="/action-repository/deployments/{deploymentId}", produces="application/json") public void deleteActionDeployment(@PathVariable java.lang.String deploymentId, javax.servlet.http.HttpServletResponse response)
-