public interface TaskQuery extends BaseQuery<Task>
| Modifier and Type | Method and Description |
|---|---|
TaskQuery |
classification(ClassificationQuery classificationQuery)
Add your classification to your query.
|
ObjectReferenceQuery |
createObjectReferenceQuery()
This method provides a query builder for quering the database.
|
TaskQuery |
customFields(String... customFields)
Filter the custom fields with this query.
|
TaskQuery |
descriptionLike(String description)
Add your description for pattern matching to your query.
|
TaskQuery |
name(String... name)
Add your names to your query.
|
TaskQuery |
owner(String... owners)
Add the owners to your query.
|
TaskQuery |
primaryObjectReferenceCompanyIn(String... companies)
Add the companies of the primary object reference for exact matching to your query.
|
TaskQuery |
primaryObjectReferenceCompanyLike(String company)
Add the company of the primary object reference for pattern matching to your query.
|
TaskQuery |
primaryObjectReferenceSystemIn(String... systems)
Add the systems of the primary object reference for exact matching to your query.
|
TaskQuery |
primaryObjectReferenceSystemInstanceIn(String... systemInstances)
Add the system instances of the primary object reference for exact matching to your query.
|
TaskQuery |
primaryObjectReferenceSystemInstanceLike(String systemInstance)
Add the system instance of the primary object reference for pattern matching to your query.
|
TaskQuery |
primaryObjectReferenceSystemLike(String system)
Add the system of the primary object reference for pattern matching to your query.
|
TaskQuery |
primaryObjectReferenceTypeIn(String... types)
Add the types of the primary object reference for exact matching to your query.
|
TaskQuery |
primaryObjectReferenceTypeLike(String type)
Add the type of the primary object reference for pattern matching to your query.
|
TaskQuery |
primaryObjectReferenceValueIn(String... values)
Add the values of the primary object reference for exact matching to your query.
|
TaskQuery |
primaryObjectReferenceValueLike(String value)
Add the value of the primary object reference for pattern matching to your query.
|
TaskQuery |
priority(int... priorities)
Add your priorities to your query.
|
TaskQuery |
read(Boolean isRead)
Add the isRead flag to the query.
|
TaskQuery |
state(TaskState... states)
Add your state to your query.
|
TaskQuery |
transferred(Boolean isTransferred)
Add the isTransferred flag to the query.
|
TaskQuery |
workbasketKeyIn(String... workbasketKeys)
Add your workbasket key to the query.
|
TaskQuery name(String... name)
name - the names as StringsTaskQuery descriptionLike(String description)
description - your descriptionTaskQuery priority(int... priorities)
priorities - as a integerTaskQuery state(TaskState... states)
states - the states as TaskStateTaskQuery classification(ClassificationQuery classificationQuery)
classificationQuery - the classification queryTaskQuery workbasketKeyIn(String... workbasketKeys) throws NotAuthorizedException
workbasketKeys - the workbasket keys as StringNotAuthorizedException - if the user have no rightsTaskQuery owner(String... owners)
owners - the owners as StringTaskQuery primaryObjectReferenceCompanyIn(String... companies)
companies - the companies of your primary object referenceTaskQuery primaryObjectReferenceCompanyLike(String company)
company - the company of your primary object referenceTaskQuery primaryObjectReferenceSystemIn(String... systems)
systems - the systems of your primary object referenceTaskQuery primaryObjectReferenceSystemLike(String system)
system - the system of your primary object referenceTaskQuery primaryObjectReferenceSystemInstanceIn(String... systemInstances)
systemInstances - the system instances of your primary object referenceTaskQuery primaryObjectReferenceSystemInstanceLike(String systemInstance)
systemInstance - the system instance of your primary object referenceTaskQuery primaryObjectReferenceTypeIn(String... types)
types - the types your primary object referenceTaskQuery primaryObjectReferenceTypeLike(String type)
type - the type of your primary object referenceTaskQuery primaryObjectReferenceValueIn(String... values)
values - the values of your primary object referenceTaskQuery primaryObjectReferenceValueLike(String value)
value - the value of your primary object referenceTaskQuery read(Boolean isRead)
isRead - as Boolean. If null, it won't be integrated into the statement. You have to set false.TaskQuery transferred(Boolean isTransferred)
isTransferred - as Boolean. If null, it won't be integrated into the statement. You have to set false.TaskQuery customFields(String... customFields)
customFields - the value in the fieldsObjectReferenceQuery createObjectReferenceQuery()
ObjectReferenceQueryCopyright © 2018. All rights reserved.