Interface CriteriaLookupDao

All Known Implementing Classes:
CriteriaLookupDaoOjb, CriteriaLookupDaoProxy

@Deprecated public interface CriteriaLookupDao
Deprecated.
use new KRAD Data framework DataObjectService
Defines basic methods that CriteriaLookup Dao's must provide
Author:
Kuali Rice Team (rice.collab@kuali.org)
  • Method Summary

    Modifier and Type
    Method
    Description
    <T> org.kuali.rice.core.api.criteria.GenericQueryResults<T>
    lookup(Class<T> queryClass, org.kuali.rice.core.api.criteria.QueryByCriteria criteria)
    Deprecated.
    Looks up a type based on a query criteria.
    <T> org.kuali.rice.core.api.criteria.GenericQueryResults<T>
    lookup(Class<T> queryClass, org.kuali.rice.core.api.criteria.QueryByCriteria criteria, org.kuali.rice.core.api.criteria.LookupCustomizer<T> customizer)
    Deprecated.
    Looks up a type based on a query criteria.
  • Method Details

    • lookup

      <T> org.kuali.rice.core.api.criteria.GenericQueryResults<T> lookup(Class<T> queryClass, org.kuali.rice.core.api.criteria.QueryByCriteria criteria)
      Deprecated.
      Looks up a type based on a query criteria.
      Type Parameters:
      T - the type that is being looked up.
      Parameters:
      queryClass - the class to lookup
      criteria - the criteria to lookup against. cannot be null.
      Returns:
      the results. will never be null.
      Throws:
      IllegalArgumentException - if the criteria is null
    • lookup

      <T> org.kuali.rice.core.api.criteria.GenericQueryResults<T> lookup(Class<T> queryClass, org.kuali.rice.core.api.criteria.QueryByCriteria criteria, org.kuali.rice.core.api.criteria.LookupCustomizer<T> customizer)
      Deprecated.
      Looks up a type based on a query criteria.
      Type Parameters:
      T - the type that is being looked up.
      Parameters:
      queryClass - the class to lookup
      criteria - the criteria to lookup against. cannot be null.
      Returns:
      the results. will never be null.
      Throws:
      IllegalArgumentException - if the criteria is null