Class CriteriaLookupDaoProxy

java.lang.Object
org.kuali.rice.krad.criteria.CriteriaLookupDaoProxy
All Implemented Interfaces:
CriteriaLookupDao

public class CriteriaLookupDaoProxy extends Object implements CriteriaLookupDao
  • Constructor Details

    • CriteriaLookupDaoProxy

      public CriteriaLookupDaoProxy()
  • Method Details

    • setCriteriaLookupDaoOjb

      public void setCriteriaLookupDaoOjb(CriteriaLookupDao lookupDaoOjb)
    • lookup

      public <T> GenericQueryResults<T> lookup(Class<T> queryClass, QueryByCriteria criteria)
      Description copied from interface: CriteriaLookupDao
      Looks up a type based on a query criteria.
      Specified by:
      lookup in interface CriteriaLookupDao
      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.
    • lookup

      public <T> GenericQueryResults<T> lookup(Class<T> queryClass, QueryByCriteria criteria, LookupCustomizer<T> customizer)
      Description copied from interface: CriteriaLookupDao
      Looks up a type based on a query criteria.
      Specified by:
      lookup in interface CriteriaLookupDao
      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.