DeclarativeQueryManager.java |
/* * JBoss, the OpenSource WebOS * * Distributable under LGPL license. * See terms of license at gnu.org. */ package javax.xml.registry; /** * @author Scott.Stark@jboss.org * @version $Revision: 1.1 $ */ public interface DeclarativeQueryManager extends QueryManager { public Query createQuery(int queryType, String queryString) throws InvalidRequestException, JAXRException; public BulkResponse executeQuery(Query query) throws JAXRException; }
DeclarativeQueryManager.java |