public interface KeyValuesService
Modifier and Type | Method and Description |
---|---|
<T extends BusinessObject> |
findAll(Class<T> clazz)
Retrieves a collection of business objects populated with data, such that each record in the database populates a new object
instance.
|
<T extends BusinessObject> |
findAllInactive(Class<T> clazz)
Retrieves a collection of business objects populated with data, such that each record in the database populates a new object
instance.
|
<T extends BusinessObject> |
findAllOrderBy(Class<T> clazz,
String sortField,
boolean sortAscending)
Retrieves a collection of business objects populated with data, such that each record in the database populates a new object
instance.
|
<T extends BusinessObject> |
findMatching(Class<T> clazz,
Map<String,Object> fieldValues)
This method retrieves a collection of business objects populated with data, such that each record in the database populates a
new object instance.
|
<T extends BusinessObject> Collection<T> findAll(Class<T> clazz)
clazz
- <T extends BusinessObject> Collection<T> findAllOrderBy(Class<T> clazz, String sortField, boolean sortAscending)
clazz
- sortField
- - name of the field in the class to sort results bysortAscending
- - boolean indicating whether to sort ascending or descending<T extends BusinessObject> Collection<T> findMatching(Class<T> clazz, Map<String,Object> fieldValues)
clazz
- fieldValues
- <T extends BusinessObject> Collection<T> findAllInactive(Class<T> clazz)
clazz
- Copyright © 2005–2016 The Kuali Foundation. All rights reserved.