Class ActionDeploymentResource
java.lang.Object
com.flowable.action.rest.service.api.repository.ActionDeploymentResource
@RestController
public class ActionDeploymentResource
extends java.lang.Object
- 
Field SummaryFields Modifier and Type Field Description protected ActionRepositoryServiceactionRepositoryServiceprotected java.lang.String[]additionalAdminUsersprotected com.flowable.core.spring.security.interceptor.PlatformSecurityInterceptorplatformSecurityInterceptor
- 
Constructor SummaryConstructors Constructor Description ActionDeploymentResource()
- 
Method SummaryModifier and Type Method Description voiddeleteActionDeployment(java.lang.String deploymentId, javax.servlet.http.HttpServletResponse response)ActionDeploymentResponsegetDeployment(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- 
ActionDeploymentResourcepublic 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)
 
-