Package com.priint.pubserverapi.document
Interface CheckedOutDocumentsQuery
- All Superinterfaces:
QueryBuilder<CheckedOutDocument>
Interface for building queries to retrieve
CheckedOutDocument entities.
This interface extends QueryBuilder and provides methods to construct queries
based on attributes of a CheckedOutDocument, such as ID, document ID, user information,
and timestamps. It supports method chaining for constructing complex queries.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionSets the dataset associated with theCheckedOutDocumentin the query.documentId(String documentId) Sets the document ID associated with theCheckedOutDocumentin the query.Sets the file name associated with theCheckedOutDocumentin the query.Sets the ID of theCheckedOutDocumentin the query.Sets the user who opened theCheckedOutDocumentin the query.openedFrom(String openedFrom) Sets the starting timestamp for when theCheckedOutDocumentwas opened.openedUntil(String openedUntil) Sets the ending timestamp for when theCheckedOutDocumentwas opened.status(int status) Sets the status of theCheckedOutDocumentin the query.Methods inherited from interface com.priint.pubserverapi.query.QueryBuilder
list, singleResult
-
Method Details
-
id
Sets the ID of theCheckedOutDocumentin the query.- Parameters:
id- the unique identifier of the checked-out document- Returns:
- the current
CheckedOutDocumentsQueryinstance for method chaining
-
documentId
Sets the document ID associated with theCheckedOutDocumentin the query.- Parameters:
documentId- the ID of the document associated with the checked-out record- Returns:
- the current
CheckedOutDocumentsQueryinstance for method chaining
-
openedBy
Sets the user who opened theCheckedOutDocumentin the query.- Parameters:
openedBy- the username or identifier of the user who opened the document- Returns:
- the current
CheckedOutDocumentsQueryinstance for method chaining
-
openedFrom
Sets the starting timestamp for when theCheckedOutDocumentwas opened.- Parameters:
openedFrom- the start time to filter documents opened after this time- Returns:
- the current
CheckedOutDocumentsQueryinstance for method chaining
-
openedUntil
Sets the ending timestamp for when theCheckedOutDocumentwas opened.- Parameters:
openedUntil- the end time to filter documents opened before this time- Returns:
- the current
CheckedOutDocumentsQueryinstance for method chaining
-
fileName
Sets the file name associated with theCheckedOutDocumentin the query.- Parameters:
fileName- the name of the file associated with the checked-out document- Returns:
- the current
CheckedOutDocumentsQueryinstance for method chaining
-
status
Sets the status of theCheckedOutDocumentin the query.- Parameters:
status- the status code of the checked-out document- Returns:
- the current
CheckedOutDocumentsQueryinstance for method chaining
-
dataset
Sets the dataset associated with theCheckedOutDocumentin the query.- Parameters:
dataset- the name or identifier of the dataset associated with the checked-out document- Returns:
- the current
CheckedOutDocumentsQueryinstance for method chaining
-