Uses of Class
gov.nih.nci.system.applicationservice.ApplicationException

Packages that use ApplicationException
gov.nih.nci.system.applicationservice   
gov.nih.nci.system.applicationservice.impl   
gov.nih.nci.system.dao   
gov.nih.nci.system.util   
org.LexGrid.LexBIG.caCore.applicationservice.impl   
org.LexGrid.LexBIG.caCore.dao.orm.translators   
org.LexGrid.LexBIG.caCore.interfaces   
 

Uses of ApplicationException in gov.nih.nci.system.applicationservice
 

Methods in gov.nih.nci.system.applicationservice that throw ApplicationException
<E> java.util.List<E>
ApplicationService.getAssociation(java.lang.Object source, java.lang.String associationName)
          Retrieves an associated object for the example object specified by the source parameter.
 java.lang.Integer ApplicationService.getQueryRowCount(java.lang.Object criteria, java.lang.String targetClassName)
          Returns the number of records that meet the search criteria.
<E> java.util.List<E>
ApplicationService.query(CQLQuery cqlQuery)
          Retrieves the result from the data source using the CQL query.
<E> java.util.List<E>
ApplicationService.query(CQLQuery cqlQuery, java.lang.String targetClassName)
          Deprecated. 
<E> java.util.List<E>
ApplicationService.query(HQLCriteria hqlCriteria)
          Retrieves the result from the data source using the HQL query.
<E> java.util.List<E>
ApplicationService.query(HQLCriteria hqlCriteria, java.lang.String targetClassName)
          Deprecated. 
<E> java.util.List<E>
ApplicationService.query(java.lang.Object criteria, java.lang.Integer firstRow, java.lang.String targetClassName)
          Used by the infrastructure to get next chunk of records in the result set.
<E> java.util.List<E>
ApplicationService.search(java.lang.Class targetClass, java.util.List objList)
          Retrieves the result from the data source using the Query by Example.
<E> java.util.List<E>
ApplicationService.search(java.lang.Class targetClass, java.lang.Object obj)
          Retrieves the result from the data source using the Query by Example.
<E> java.util.List<E>
ApplicationService.search(java.lang.String path, java.util.List objList)
          Retrieves the result from the data source using a Nested Search Criteria.
<E> java.util.List<E>
ApplicationService.search(java.lang.String path, java.lang.Object obj)
          Retrieves the result from the data source using the Nested Search Criteria.
 

Uses of ApplicationException in gov.nih.nci.system.applicationservice.impl
 

Methods in gov.nih.nci.system.applicationservice.impl that throw ApplicationException
<E> java.util.List<E>
ApplicationServiceImpl.getAssociation(java.lang.Object source, java.lang.String associationName)
           
protected  DAO ApplicationServiceImpl.getDAO(java.lang.String classname)
           
 java.lang.Integer ApplicationServiceImpl.getQueryRowCount(java.lang.Object criteria, java.lang.String targetClassName)
           
protected
<E> java.util.List<E>
ApplicationServiceImpl.privateQuery(java.lang.Object criteria, java.lang.String targetClassName)
          Prepares the #gov.nih.nci.system.dao.Request object and uses #query(Request) to retrieve results from the data source.
<E> java.util.List<E>
ApplicationServiceImpl.query(DetachedCriteria detachedCriteria)
           
<E> java.util.List<E>
ApplicationServiceImpl.query(DetachedCriteria detachedCriteria, java.lang.String targetClassName)
           
<E> java.util.List<E>
ApplicationServiceImpl.query(java.lang.Object criteria, java.lang.Integer firstRow, java.lang.String targetClassName)
           
<E> java.util.List<E>
ApplicationServiceImpl.search(java.lang.Class targetClass, java.util.List objList)
           
<E> java.util.List<E>
ApplicationServiceImpl.search(java.lang.Class targetClass, java.lang.Object obj)
           
<E> java.util.List<E>
ApplicationServiceImpl.search(java.lang.String path, java.util.List objList)
           
<E> java.util.List<E>
ApplicationServiceImpl.search(java.lang.String path, java.lang.Object obj)
           
 

Uses of ApplicationException in gov.nih.nci.system.dao
 

Subclasses of ApplicationException in gov.nih.nci.system.dao
 class DAOException
          An exception class for DAO related functions
 class QueryException
          This exception is thrown by all the methods of the ApplicationService interface.
 

Uses of ApplicationException in gov.nih.nci.system.util
 

Methods in gov.nih.nci.system.util that throw ApplicationException
 java.util.Map<java.lang.String,java.util.Collection<java.lang.String>> ApplicationServiceMethodHelper.getDomainObjectName(MethodInvocation invocation)
           
 

Uses of ApplicationException in org.LexGrid.LexBIG.caCore.applicationservice.impl
 

Methods in org.LexGrid.LexBIG.caCore.applicationservice.impl that throw ApplicationException
 java.lang.Object LexEVSApplicationServiceImpl.executeRemotely(java.lang.Object object, java.lang.String methodName, java.lang.String[] parameterClasses, java.lang.Object[] args)
          Execute the given method on the specified LexBig object.
 java.util.List<java.lang.Object> LexEVSApplicationServiceImpl.getAssociation(java.lang.Object source, java.lang.String associationName)
           
 java.util.List<java.lang.Object> LexEVSApplicationServiceImpl.getAssociation(java.lang.Object source, java.lang.String associationName, QueryOptions queryOptions)
           
protected  DAO LexEVSApplicationServiceImpl.getDAO(java.lang.String classname)
           
 java.lang.Integer LexEVSApplicationServiceImpl.getQueryRowCount(java.lang.Object criteria, java.lang.String targetClassName)
           
 java.lang.Integer LexEVSApplicationServiceImpl.getQueryRowCount(java.lang.Object criteria, java.lang.String targetClassName, QueryOptions queryOptions)
           
protected
<E> java.util.List<E>
LexEVSApplicationServiceImpl.privateQuery(java.lang.Object criteria, java.lang.String targetClassName, QueryOptions queryOptions)
           
<E> java.util.List<E>
LexEVSApplicationServiceImpl.query(CQLQuery cqlQuery)
           
<E> java.util.List<E>
LexEVSApplicationServiceImpl.query(CQLQuery cqlQuery, QueryOptions queryOptions)
           
<E> java.util.List<E>
LexEVSApplicationServiceImpl.query(CQLQuery cqlQuery, java.lang.String targetClassName)
           
<E> java.util.List<E>
LexEVSApplicationServiceImpl.query(CQLQuery cqlQuery, java.lang.String targetClassName, QueryOptions queryOptions)
           
<E> java.util.List<E>
LexEVSApplicationServiceImpl.query(HQLCriteria hqlCriteria)
           
<E> java.util.List<E>
LexEVSApplicationServiceImpl.query(HQLCriteria hqlCriteria, QueryOptions queryOptions)
           
<E> java.util.List<E>
LexEVSApplicationServiceImpl.query(HQLCriteria hqlCriteria, java.lang.String targetClassName)
           
<E> java.util.List<E>
LexEVSApplicationServiceImpl.query(HQLCriteria hqlCriteria, java.lang.String targetClassName, QueryOptions queryOptions)
           
<E> java.util.List<E>
LexEVSApplicationServiceImpl.query(java.lang.Object criteria, java.lang.Integer firstRow, java.lang.String targetClassName)
           
<E> java.util.List<E>
LexEVSApplicationServiceImpl.query(java.lang.Object criteria, java.lang.Integer firstRow, java.lang.String targetClassName, QueryOptions queryOptions)
           
protected  Response LexEVSApplicationServiceImpl.query(Request request, QueryOptions options)
           
<E> java.util.List<E>
LexEVSApplicationServiceImpl.search(java.lang.Class targetClass, java.util.List objList)
           
<E> java.util.List<E>
LexEVSApplicationServiceImpl.search(java.lang.Class targetClass, java.util.List objList, QueryOptions queryOptions)
           
<E> java.util.List<E>
LexEVSApplicationServiceImpl.search(java.lang.Class targetClass, java.lang.Object obj)
           
<E> java.util.List<E>
LexEVSApplicationServiceImpl.search(java.lang.Class targetClass, java.lang.Object obj, QueryOptions queryOptions)
           
<E> java.util.List<E>
LexEVSApplicationServiceImpl.search(java.lang.Class targetClass, java.lang.Object obj, java.lang.String eagerFetchAssociation, QueryOptions queryOptions)
           
<E> java.util.List<E>
LexEVSApplicationServiceImpl.search(java.lang.String path, java.util.List objList)
           
<E> java.util.List<E>
LexEVSApplicationServiceImpl.search(java.lang.String path, java.util.List objList, QueryOptions queryOptions)
           
<E> java.util.List<E>
LexEVSApplicationServiceImpl.search(java.lang.String path, java.lang.Object obj)
           
<E> java.util.List<E>
LexEVSApplicationServiceImpl.search(java.lang.String path, java.lang.Object obj, QueryOptions queryOptions)
           
 

Constructors in org.LexGrid.LexBIG.caCore.applicationservice.impl that throw ApplicationException
LexEVSApplicationServiceImpl(LexEVSClassCache classCache, Validator validator)
           
LexEVSApplicationServiceImpl(Validator validator)
           
 

Uses of ApplicationException in org.LexGrid.LexBIG.caCore.dao.orm.translators
 

Subclasses of ApplicationException in org.LexGrid.LexBIG.caCore.dao.orm.translators
 class TranslationException
           
 

Uses of ApplicationException in org.LexGrid.LexBIG.caCore.interfaces
 

Methods in org.LexGrid.LexBIG.caCore.interfaces that throw ApplicationException
<E> java.util.List<E>
LexEVSDataService.getAssociation(java.lang.Object source, java.lang.String associationName, QueryOptions queryOptions)
          Retrieves an associated object for the example object specified by the source parameter.
 java.lang.Integer LexEVSDataService.getQueryRowCount(java.lang.Object criteria, java.lang.String targetClassName, QueryOptions queryOptions)
          Returns the number of records that meet the search criteria.
<E> java.util.List<E>
LexEVSDataService.query(CQLQuery cqlQuery, QueryOptions queryOptions)
          Retrieves the result from the data source using the CQL query.
<E> java.util.List<E>
LexEVSDataService.query(CQLQuery cqlQuery, java.lang.String targetClassName, QueryOptions queryOptions)
          Deprecated. 
<E> java.util.List<E>
LexEVSDataService.query(HQLCriteria hqlCriteria, QueryOptions queryOptions)
          Retrieves the result from the data source using the HQL query.
<E> java.util.List<E>
LexEVSDataService.query(HQLCriteria hqlCriteria, java.lang.String targetClassName, QueryOptions queryOptions)
          Deprecated. 
<E> java.util.List<E>
LexEVSDataService.query(java.lang.Object criteria, java.lang.Integer firstRow, java.lang.String targetClassName, QueryOptions queryOptions)
          Used by the infrastructure to get next chunk of records in the result set.
<E> java.util.List<E>
LexEVSDataService.search(java.lang.Class targetClass, java.util.List objList, QueryOptions queryOptions)
          Retrieves the result from the data source using the Query by Example.
<E> java.util.List<E>
LexEVSDataService.search(java.lang.Class targetClass, java.lang.Object obj, QueryOptions queryOptions)
          Retrieves the result from the data source using the Query by Example.
<E> java.util.List<E>
LexEVSDataService.search(java.lang.String path, java.util.List objList, QueryOptions queryOptions)
          Retrieves the result from the data source using a Nested Search Criteria.
<E> java.util.List<E>
LexEVSDataService.search(java.lang.String path, java.lang.Object obj, QueryOptions queryOptions)
          Retrieves the result from the data source using the Nested Search Criteria.