@Service public class UserRequestServiceImpl extends Object implements UserRequestService
Modifier and Type | Field and Description |
---|---|
protected static org.slf4j.Logger |
LOG |
protected org.apache.cxf.jaxrs.ext.MessageContext |
messageContext |
protected static String |
OPTIONS_ALLOW |
protected SearchCondVisitor |
searchCondVisitor |
protected org.apache.cxf.jaxrs.ext.search.SearchContext |
searchContext |
protected javax.ws.rs.core.UriInfo |
uriInfo |
CRLF, DOUBLE_DASH, PARAM_ANYTYPE_KIND, PARAM_ANYTYPEKEY, PARAM_CONNID_PAGED_RESULTS_COOKIE, PARAM_DETAILS, PARAM_ENTITY_KEY, PARAM_FIQL, PARAM_MAX, PARAM_NOTIFICATION, PARAM_ORDERBY, PARAM_PAGE, PARAM_REALM, PARAM_RESOURCE, PARAM_SIZE, PARAM_USER
Constructor and Description |
---|
UserRequestServiceImpl() |
Modifier and Type | Method and Description |
---|---|
protected javax.ws.rs.core.Response.ResponseBuilder |
applyPreference(ProvisioningResult<?> provisioningResult,
javax.ws.rs.core.Response.ResponseBuilder builder) |
protected <T extends BaseBean> |
buildPagedResult(List<T> list,
int page,
int size,
int totalCount)
Builds a paged result out of a list of items and additional information.
|
void |
cancelRequest(String executionId,
String reason)
Cancel a running user request.
|
protected void |
checkETag(String etag) |
UserRequestForm |
claimForm(String taskId)
Requests to manage the form for the given task id.
|
protected javax.ws.rs.core.Response |
createResponse(ProvisioningResult<?> provisioningResult)
Builds response to successful
create request, taking into account any Prefer header. |
protected String |
getActualKey(AnyDAO<?> dao,
String pretendingKey) |
UserRequestForm |
getForm(String username,
String taskId)
Returns a user request form matching the given task id.
|
protected List<OrderByClause> |
getOrderByClauses(String orderBy) |
protected Preference |
getPreference()
Reads
Prefer header from request and parses into a Preference instance. |
protected SearchCond |
getSearchCond(String fiql,
String realm) |
protected boolean |
isNullPriorityAsync() |
PagedResult<UserRequestForm> |
listForms(UserRequestQuery query)
Returns a list of user request forms matching the given query.
|
PagedResult<UserRequest> |
listRequests(UserRequestQuery query)
Returns a list of running user requests matching the given query.
|
protected javax.ws.rs.core.Response |
modificationResponse(Object entity)
Builds response to successful modification request, taking into account any
Prefer header. |
UserRequest |
startRequest(String bpmnProcess,
String user,
WorkflowTaskExecInput inputVariables)
Starts a new request for the given BPMN Process and user (if provided) or requesting user (if not provided).
|
javax.ws.rs.core.Response |
submitForm(UserRequestForm form)
Submits a user request form.
|
UserRequestForm |
unclaimForm(String taskId)
Cancels request to manage the form for the given task id.
|
protected static final org.slf4j.Logger LOG
protected static final String OPTIONS_ALLOW
@Context protected javax.ws.rs.core.UriInfo uriInfo
@Context protected org.apache.cxf.jaxrs.ext.MessageContext messageContext
@Context protected org.apache.cxf.jaxrs.ext.search.SearchContext searchContext
@Autowired protected SearchCondVisitor searchCondVisitor
public PagedResult<UserRequest> listRequests(UserRequestQuery query)
UserRequestService
listRequests
in interface UserRequestService
query
- query conditionspublic UserRequest startRequest(String bpmnProcess, String user, WorkflowTaskExecInput inputVariables)
UserRequestService
startRequest
in interface UserRequestService
bpmnProcess
- BPMN processuser
- if value looks like a UUID then it is interpreted as key otherwise as a usernameinputVariables
- initial request variablespublic void cancelRequest(String executionId, String reason)
UserRequestService
cancelRequest
in interface UserRequestService
executionId
- execution idreason
- reason to cancel the user requestpublic UserRequestForm claimForm(String taskId)
UserRequestService
claimForm
in interface UserRequestService
taskId
- workflow task idpublic UserRequestForm unclaimForm(String taskId)
UserRequestService
unclaimForm
in interface UserRequestService
taskId
- workflow task idpublic UserRequestForm getForm(String username, String taskId)
UserRequestService
getForm
in interface UserRequestService
username
- username of the logged usertaskId
- workflow task idpublic PagedResult<UserRequestForm> listForms(UserRequestQuery query)
UserRequestService
listForms
in interface UserRequestService
query
- query conditionspublic javax.ws.rs.core.Response submitForm(UserRequestForm form)
UserRequestService
submitForm
in interface UserRequestService
form
- user request form.protected boolean isNullPriorityAsync()
protected Preference getPreference()
Prefer
header from request and parses into a Preference
instance.Preference
instance matching the passed Prefer
header,
or Preference.NONE
if missing.protected javax.ws.rs.core.Response.ResponseBuilder applyPreference(ProvisioningResult<?> provisioningResult, javax.ws.rs.core.Response.ResponseBuilder builder)
protected javax.ws.rs.core.Response createResponse(ProvisioningResult<?> provisioningResult)
create
request, taking into account any Prefer
header.provisioningResult
- the entity just createdcreate
requestprotected javax.ws.rs.core.Response modificationResponse(Object entity)
Prefer
header.entity
- the entity just modifiedprotected void checkETag(String etag)
protected SearchCond getSearchCond(String fiql, String realm)
protected List<OrderByClause> getOrderByClauses(String orderBy)
protected <T extends BaseBean> PagedResult<T> buildPagedResult(List<T> list, int page, int size, int totalCount)
T
- result typelist
- bare list of items to be returnedpage
- current pagesize
- requested sizetotalCount
- total result size (not considering pagination)Copyright © 2010–2023 The Apache Software Foundation. All rights reserved.