| org.kuali.core.dao.LookupDao
All known Subclasses: org.kuali.core.dao.ojb.LookupDaoOjb,
LookupDao | public interface LookupDao (Code) | | This interface defines basic methods that Lookup Dao's must provide
|
Method Summary | |
public boolean | createCriteria(Object example, String searchValue, String propertyName, Criteria criteria) | public boolean | createCriteria(Object example, String searchValue, String propertyName, boolean caseInsensitive, Criteria criteria) | public Collection | findCollectionBySearchHelper(Class example, Map formProps, boolean unbounded, boolean usePrimaryKeyValuesOnly) | public Collection | findCollectionBySearchHelper(Class example, Map formProps, boolean unbounded, boolean usePrimaryKeyValuesOnly, Object additionalCriteria) | public Collection | findCollectionBySearchHelperWithUniversalUserJoin(Class example, Map nonUniversalUserSearchCriteria, Map universalUserSearchCriteria, boolean unbounded, boolean usePrimaryKeyValuesOnly) | public Long | findCountByMap(Object example, Map formProps) Returns a count of objects based on the given search parameters. | public Object | findObjectByMap(Object example, Map formProps) Retrieves a Object based on the search criteria, which should uniquely identify a record. |
createCriteria | public boolean createCriteria(Object example, String searchValue, String propertyName, Criteria criteria)(Code) | | Create OJB criteria based on business object, search field and value
true if the criteria is created successfully; otherwise, return false |
createCriteria | public boolean createCriteria(Object example, String searchValue, String propertyName, boolean caseInsensitive, Criteria criteria)(Code) | | Create OJB criteria based on business object, search field and value
true if the criteria is created successfully; otherwise, return false |
findCollectionBySearchHelper | public Collection findCollectionBySearchHelper(Class example, Map formProps, boolean unbounded, boolean usePrimaryKeyValuesOnly)(Code) | | |
findCollectionBySearchHelper | public Collection findCollectionBySearchHelper(Class example, Map formProps, boolean unbounded, boolean usePrimaryKeyValuesOnly, Object additionalCriteria)(Code) | | |
findCollectionBySearchHelperWithUniversalUserJoin | public Collection findCollectionBySearchHelperWithUniversalUserJoin(Class example, Map nonUniversalUserSearchCriteria, Map universalUserSearchCriteria, boolean unbounded, boolean usePrimaryKeyValuesOnly)(Code) | | |
findCountByMap | public Long findCountByMap(Object example, Map formProps)(Code) | | Returns a count of objects based on the given search parameters.
Long returned from the search |
findObjectByMap | public Object findObjectByMap(Object example, Map formProps)(Code) | | Retrieves a Object based on the search criteria, which should uniquely identify a record.
Object returned from the search |
|
|