Class ActionLinkResource
java.lang.Object
com.flowable.action.rest.service.api.action.BaseActionResource
com.flowable.action.rest.service.api.runtime.ActionLinkResource
@RestController public class ActionLinkResource extends BaseActionResource
- Author:
- Joram Barrez
-
Field Summary
Fields Modifier and Type Field Description protected ActionRuntimeService
actionRuntimeService
Fields inherited from class com.flowable.action.rest.service.api.action.BaseActionResource
actionEngineConfigurationApi, actionRepositoryService, additionalAdminUsers, defaultListResponseSize, formRepositoryService, platformIdentityService, platformSecurityInterceptor
-
Constructor Summary
Constructors Constructor Description ActionLinkResource()
-
Method Summary
Modifier and Type Method Description ActionLinkResponse
getActionLink(java.lang.String actionLinkId)
java.util.List<ActionLinkResponse>
getActionLinks(java.lang.String scopeId, java.lang.String scopeType)
Methods inherited from class com.flowable.action.rest.service.api.action.BaseActionResource
currentUserHasAccess, currentUserHasAccess, currentUserHasAccess, currentUserHasAccess, currentUserHasAccess, currentUserHasAccess, currentUserHasAccessToActionInForm, currentUserHasAdminRights, currentUserIsSuperAdmin, extractPermissionGroups, getScopedObject
-
Field Details
-
Constructor Details
-
ActionLinkResource
public ActionLinkResource()
-
-
Method Details
-
getActionLink
@GetMapping(value="/action-runtime/action-links/{actionLinkId}", produces="application/json") public ActionLinkResponse getActionLink(@PathVariable("actionLinkId") java.lang.String actionLinkId) -
getActionLinks
@GetMapping(value="/action-runtime/action-links", produces="application/json") public java.util.List<ActionLinkResponse> getActionLinks(@RequestParam(required=true) java.lang.String scopeId, @RequestParam(required=true) java.lang.String scopeType)
-