Interface QueryLanguageProvider<T>
- All Known Implementing Classes:
BasicQueryLanguageProvider
ResourceResolver.findResources(String, String)
and
ResourceResolver.queryResources(String, String)
are passed on
to this object.- Since:
- 1.0.0 (Sling API Bundle 2.11.0)
-
Method Summary
Modifier and TypeMethodDescriptionfindResources
(@NotNull ResolveContext<T> ctx, String query, String language) Searches for resources using the given query formulated in the given language.String[]
getSupportedLanguages
(@NotNull ResolveContext<T> ctx) The supported languages of the resource provider.queryResources
(@NotNull ResolveContext<T> ctx, String query, String language) Queries the storage using the given query formulated in the given language.
-
Method Details
-
getSupportedLanguages
The supported languages of the resource provider.- Parameters:
ctx
- The resolve context- Returns:
- The array of supported languages
-
findResources
Iterator<Resource> findResources(@NotNull @NotNull ResolveContext<T> ctx, String query, String language) Searches for resources using the given query formulated in the given language.The semantic meaning of the query and language depend on the actual implementation and storage used for the resources. For JCR repository being used as storage, the query and language parameters are used to create a JCR
Query
through theQueryManager
. The result returned is then based on theNodeIterator
provided by the query result.- Parameters:
ctx
- The resolve contextquery
- The query string to use to find the resources.language
- The language in which the query is formulated.- Returns:
- An
Iterator
ofResource
objects matching the query. If no resources match,null
might be returned instead of an empty iterator. - Throws:
QuerySyntaxException
- If the query is not syntactically correct according to the query language indicator or if the query language is not supported as specified ingetSupportedLanguages(ResolveContext)
.SlingException
- If an error occurs querying for the resources.IllegalStateException
- if this resource provider has already been closed.
-
queryResources
Iterator<ValueMap> queryResources(@NotNull @NotNull ResolveContext<T> ctx, String query, String language) Queries the storage using the given query formulated in the given language.The semantic meaning of the query and language depend on the actual implementation and storage used for the resources. For JCR repository being used as storage, the query and language parameters are used to create a JCR
Query
through theQueryManager
. The result returned is then based on theRowIterator
provided by the query result. The map returned for each row is indexed by the column name and the column value is the JCRValue
object converted into the respective Java object, such asBoolean
for a value of property type Boolean.- Parameters:
ctx
- The resolve contextquery
- The query string to use to find the resources.language
- The language in which the query is formulated.- Returns:
- An
Iterator
ofMap
instances providing access to the query result. If no resources match,null
might be returned instead of an empty iterator. - Throws:
QuerySyntaxException
- If the query is not syntactically correct according to the query language indicator or if the query language is not supported as specified ingetSupportedLanguages(ResolveContext)
.SlingException
- If an error occurs querying for the resources.IllegalStateException
- if this resource provider has already been closed.
-