Interface PageTemplatesQuery
- All Superinterfaces:
QueryBuilder<PageTemplate>
Interface for building queries to retrieve page template entities.
This interface provides methods to construct queries based on attributes of a page template, such as ID, label, and patterns for label matching. It supports method chaining for constructing complex queries.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptiongridTemplate(boolean gridTemplate) Sets the gridTemplate boolean value of the page template in the query.Sets the ID of the page template in the query.Sets the label of the page template in the query.Sets a pattern to match the label of the page template in the query.publicationId(String publicationId) Sets the publication ID of the assigned page template in the query.Methods inherited from interface com.priint.pubserverapi.query.QueryBuilder
list, singleResult
-
Method Details
-
id
Sets the ID of the page template in the query.- Parameters:
id- the unique identifier of the page template- Returns:
- the current
PageTemplatesQueryinstance for method chaining
-
label
Sets the label of the page template in the query.- Parameters:
label- the label of the page template- Returns:
- the current
PageTemplatesQueryinstance for method chaining
-
labelLike
Sets a pattern to match the label of the page template in the query.This method allows partial or wildcard matching for labels.
- Parameters:
labelLike- the pattern to match the label of the page template- Returns:
- the current
PageTemplatesQueryinstance for method chaining
-
publicationId
Sets the publication ID of the assigned page template in the query.- Parameters:
publicationId- the publication id of a publication where a page template is assigned to- Returns:
- the current
PageTemplatesQueryinstance for method chaining
-
gridTemplate
Sets the gridTemplate boolean value of the page template in the query.- Parameters:
gridTemplate- the gridTemplate boolean value of the page template- Returns:
- the current
PageTemplatesQueryinstance for method chaining
-