Package com.sun.xml.registry.uddi
Class DeclarativeQueryManagerImpl
- java.lang.Object
-
- com.sun.xml.registry.uddi.QueryManagerImpl
-
- com.sun.xml.registry.uddi.DeclarativeQueryManagerImpl
-
- All Implemented Interfaces:
javax.xml.registry.QueryManager
public class DeclarativeQueryManagerImpl extends QueryManagerImpl
This interface provides the ability to execute declarative queries (e.g. SQL)- Author:
- Farrukh S. Najmi
-
-
Constructor Summary
Constructors Constructor Description DeclarativeQueryManagerImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description javax.xml.registry.QuerycreateQuery(int queryType, String queryString)Creates a Query object given a queryType (e.g.javax.xml.registry.BulkResponseexecuteQuery(javax.xml.registry.Query query)Execute a query as specified by query paramater.-
Methods inherited from class com.sun.xml.registry.uddi.QueryManagerImpl
getRegistryObject, getRegistryObject, getRegistryObjects, getRegistryObjects, getRegistryObjects, getRegistryObjects, getRegistryService
-
-
-
-
Method Detail
-
createQuery
public javax.xml.registry.Query createQuery(int queryType, String queryString) throws javax.xml.registry.InvalidRequestException, javax.xml.registry.JAXRExceptionCreates a Query object given a queryType (e.g. SQL) and a String that represents a query in the syntax appropriate for queryType. Must throw and InvalidRequestException if the sqlQuery is not valid.- Capability Level: 1
- Throws:
javax.xml.registry.InvalidRequestExceptionjavax.xml.registry.JAXRException- See Also:
Query.QUERY_TYPE_SQL,Query.QUERY_TYPE_XQUERY
-
executeQuery
public javax.xml.registry.BulkResponse executeQuery(javax.xml.registry.Query query) throws javax.xml.registry.JAXRExceptionExecute a query as specified by query paramater.- Capability Level: 1
- Throws:
javax.xml.registry.JAXRException
-
-