@Service public class TaskServiceImpl extends AbstractExecutableService implements TaskService
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 |
---|
TaskServiceImpl() |
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.
|
protected void |
checkETag(String etag) |
javax.ws.rs.core.Response |
create(TaskType type,
SchedTaskTO taskTO)
Creates a new task.
|
protected javax.ws.rs.core.Response |
createResponse(ProvisioningResult<?> provisioningResult)
Builds response to successful
create request, taking into account any Prefer header. |
void |
delete(TaskType type,
String key)
Deletes the task matching the provided key.
|
protected String |
getActualKey(AnyDAO<?> dao,
String pretendingKey) |
protected AbstractExecutableLogic<?> |
getExecutableLogic() |
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() |
protected javax.ws.rs.core.Response |
modificationResponse(Object entity)
Builds response to successful modification request, taking into account any
Prefer header. |
javax.ws.rs.core.Response |
purgePropagations(Date since,
List<ExecStatus> statuses,
List<String> resources)
Deletes all the propagation tasks whose latest execution is matching the given conditions.
|
<T extends TaskTO> |
read(TaskType type,
String key,
boolean details)
Returns the task matching the given key.
|
<T extends TaskTO> |
search(TaskQuery query)
Returns a paged list of existing tasks matching the given query.
|
void |
update(TaskType type,
SchedTaskTO taskTO)
Updates the task matching the provided key.
|
actionJob, deleteExecution, deleteExecutions, execute, getJob, listExecutions, listJobs, listRecentExecutions
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
actionJob, deleteExecution, deleteExecutions, execute, getJob, listExecutions, listJobs, listRecentExecutions
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
protected AbstractExecutableLogic<?> getExecutableLogic()
getExecutableLogic
in class AbstractExecutableService
public javax.ws.rs.core.Response create(TaskType type, SchedTaskTO taskTO)
TaskService
create
in interface TaskService
type
- task typetaskTO
- task to be createdpublic void delete(TaskType type, String key)
TaskService
delete
in interface TaskService
type
- task typekey
- key of task to be deletedpublic <T extends TaskTO> PagedResult<T> search(TaskQuery query)
TaskService
search
in interface TaskService
T
- type of taskTOquery
- query conditionspublic <T extends TaskTO> T read(TaskType type, String key, boolean details)
TaskService
read
in interface TaskService
T
- type of taskTOtype
- task typekey
- key of task to be readdetails
- whether include executions or not, defaults to truepublic void update(TaskType type, SchedTaskTO taskTO)
TaskService
update
in interface TaskService
type
- task typetaskTO
- updated task to be storedpublic javax.ws.rs.core.Response purgePropagations(Date since, List<ExecStatus> statuses, List<String> resources)
TaskService
purgePropagations
in interface TaskService
since
- match all executions started afterwardsstatuses
- execution status(es) to matchresources
- external resource(s) to matchprotected 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.