Class QueryImpl
- java.lang.Object
-
- org.apache.jackrabbit.jcr2spi.query.QueryImpl
-
- All Implemented Interfaces:
Query
- Direct Known Subclasses:
QueryObjectModelImpl
public class QueryImpl extends Object implements Query
Provides the default implementation for a JCR query.
-
-
Constructor Summary
Constructors Constructor Description QueryImpl(Session session, ManagerProvider mgrProvider, ItemManager itemMgr, WorkspaceManager wspManager, String statement, String language, Node node)Creates a new query.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidbindValue(String varName, Value value)QueryResultexecute()String[]getBindVariableNames()StringgetLanguage()StringgetStatement()StringgetStoredQueryPath()voidsetLimit(long limit)voidsetOffset(long offset)NodestoreAsNode(String absPath)
-
-
-
Constructor Detail
-
QueryImpl
public QueryImpl(Session session, ManagerProvider mgrProvider, ItemManager itemMgr, WorkspaceManager wspManager, String statement, String language, Node node) throws InvalidQueryException, RepositoryException
Creates a new query.- Parameters:
session- the session that created this query.mgrProvider- the manager provider.itemMgr- the item manager of that session.wspManager- the workspace manager that belongs to the session.statement- the query statement.language- the language of the query statement.node- the node from where the query was read ornullif this query is not a stored query.- Throws:
InvalidQueryException- if the query is invalid.RepositoryException
-
-
Method Detail
-
execute
public QueryResult execute() throws RepositoryException
- Specified by:
executein interfaceQuery- Throws:
RepositoryException- See Also:
Query.execute()
-
getStatement
public String getStatement()
- Specified by:
getStatementin interfaceQuery- See Also:
Query.getStatement()
-
getLanguage
public String getLanguage()
- Specified by:
getLanguagein interfaceQuery- See Also:
Query.getLanguage()
-
getStoredQueryPath
public String getStoredQueryPath() throws ItemNotFoundException, RepositoryException
- Specified by:
getStoredQueryPathin interfaceQuery- Throws:
ItemNotFoundExceptionRepositoryException- See Also:
Query.getStoredQueryPath()
-
storeAsNode
public Node storeAsNode(String absPath) throws ItemExistsException, PathNotFoundException, VersionException, ConstraintViolationException, LockException, UnsupportedRepositoryOperationException, RepositoryException
- Specified by:
storeAsNodein interfaceQuery- Throws:
ItemExistsExceptionPathNotFoundExceptionVersionExceptionConstraintViolationExceptionLockExceptionUnsupportedRepositoryOperationExceptionRepositoryException- See Also:
Query.storeAsNode(String)
-
getBindVariableNames
public String[] getBindVariableNames() throws RepositoryException
- Specified by:
getBindVariableNamesin interfaceQuery- Throws:
RepositoryException- See Also:
Query.getBindVariableNames()
-
bindValue
public void bindValue(String varName, Value value) throws RepositoryException
- Specified by:
bindValuein interfaceQuery- Throws:
RepositoryException- See Also:
Query.bindValue(String, Value)
-
setLimit
public void setLimit(long limit)
- Specified by:
setLimitin interfaceQuery- See Also:
Query.setLimit(long)
-
setOffset
public void setOffset(long offset)
- Specified by:
setOffsetin interfaceQuery- See Also:
Query.setOffset(long)
-
-