David Caruana 19e3138e1c - Incorporate JCR project into Repository project
- Single configuration entry point for JCR and non-JCR clients (i.e. application-context.xml)
- Addition of build-war, incremental-war build targets (no deploy)
- Remove build of JCR TCK war file by default

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@2777 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
2006-05-05 16:33:22 +00:00

119 lines
3.1 KiB
Java

/*
* Copyright (C) 2005 Alfresco, Inc.
*
* Licensed under the Mozilla Public License version 1.1
* with a permitted attribution clause. You may obtain a
* copy of the License at
*
* http://www.alfresco.org/legal/license.txt
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
* either express or implied. See the License for the specific
* language governing permissions and limitations under the
* License.
*/
package org.alfresco.jcr.query;
import javax.jcr.ItemExistsException;
import javax.jcr.ItemNotFoundException;
import javax.jcr.Node;
import javax.jcr.PathNotFoundException;
import javax.jcr.RepositoryException;
import javax.jcr.UnsupportedRepositoryOperationException;
import javax.jcr.lock.LockException;
import javax.jcr.nodetype.ConstraintViolationException;
import javax.jcr.query.InvalidQueryException;
import javax.jcr.query.Query;
import javax.jcr.version.VersionException;
import org.alfresco.jcr.session.SessionImpl;
import org.alfresco.jcr.util.JCRProxyFactory;
/**
* Alfresco implementation of JCR Query
*
* @author David Caruana
*/
public abstract class QueryImpl implements Query
{
/** Session */
private SessionImpl session;
/** Query Statement */
private String statement;
/** Proxy */
private Query proxy = null;
/**
* Construct
*
* @param statement query language
*/
public QueryImpl(SessionImpl session, String statement)
{
this.session = session;
this.statement = statement;
}
/**
* Get proxied JCR Query
*
* @return proxy
*/
public Query getProxy()
{
if (proxy == null)
{
proxy = (Query)JCRProxyFactory.create(this, Query.class, session);
}
return proxy;
}
/**
* Get Session
*
* @return session
*/
public SessionImpl getSession()
{
return session;
}
/**
* Is the statement valid?
*
* @throws InvalidQueryException
*/
public abstract void isValidStatement() throws InvalidQueryException;
/* (non-Javadoc)
* @see javax.jcr.query.Query#getStatement()
*/
public String getStatement()
{
return statement;
}
/* (non-Javadoc)
* @see javax.jcr.query.Query#getStoredQueryPath()
*/
public String getStoredQueryPath() throws ItemNotFoundException, RepositoryException
{
throw new ItemNotFoundException("This query has not been saved to the Repository");
}
/* (non-Javadoc)
* @see javax.jcr.query.Query#storeAsNode(java.lang.String)
*/
public Node storeAsNode(String absPath) throws ItemExistsException, PathNotFoundException, VersionException, ConstraintViolationException, LockException, UnsupportedRepositoryOperationException, RepositoryException
{
throw new UnsupportedRepositoryOperationException();
}
}