@Deprecated public interface BusinessObjectService
Modifier and Type | Method and Description |
---|---|
int |
countMatching(Class clazz,
Map<String,?> fieldValues)
Deprecated.
This method retrieves a count of the business objects populated with data which match the criteria in the given Map.
|
int |
countMatching(Class clazz,
Map<String,?> positiveFieldValues,
Map<String,?> negativeFieldValues)
Deprecated.
This method retrieves a count of the business objects populated with data which match both the positive criteria
and the negative criteria in the given Map.
|
void |
delete(List<? extends org.kuali.rice.krad.bo.PersistableBusinessObject> boList)
Deprecated.
Deletes each business object in the given List.
|
void |
delete(Object bo)
Deprecated.
Deletes a business object from the database.
|
void |
deleteMatching(Class clazz,
Map<String,?> fieldValues)
Deprecated.
Deletes the object(s) matching the given field values
|
<T> Collection<T> |
findAll(Class<T> clazz)
Deprecated.
Retrieves a collection of business objects populated with data, such that each record in the database populates a new object
instance.
|
<T> Collection<T> |
findAllOrderBy(Class<T> clazz,
String sortField,
boolean sortAscending)
Deprecated.
Retrieves a collection of business objects populated with data, such that each record in the database populates a new object
instance.
|
<T> T |
findByPrimaryKey(Class<T> clazz,
Map<String,?> primaryKeys)
Deprecated.
Retrieves an object instance identified by its primary keys and values.
|
<T> T |
findBySinglePrimaryKey(Class<T> clazz,
Object primaryKey)
Deprecated.
Retrieves an object instance identified by its primary key.
|
<T> Collection<T> |
findMatching(Class<T> clazz,
Map<String,?> fieldValues)
Deprecated.
This method retrieves a collection of business objects populated with data, such that each record in the database populates a
new object instance.
|
<T> Collection<T> |
findMatchingOrderBy(Class<T> clazz,
Map<String,?> fieldValues,
String sortField,
boolean sortAscending)
Deprecated.
This method retrieves a collection of business objects populated with data, such that each record in the database populates a
new object instance.
|
org.kuali.rice.krad.bo.BusinessObject |
getReferenceIfExists(org.kuali.rice.krad.bo.BusinessObject bo,
String referenceName)
Deprecated.
This method attempts to retrieve the reference from a BO if it exists.
|
List<? extends org.kuali.rice.krad.bo.PersistableBusinessObject> |
linkAndSave(List<? extends org.kuali.rice.krad.bo.PersistableBusinessObject> businessObjects)
Deprecated.
Links up any contained objects, and Saves the businessObjects on the list via the persistence layer.
|
org.kuali.rice.krad.bo.PersistableBusinessObject |
linkAndSave(org.kuali.rice.krad.bo.PersistableBusinessObject bo)
Deprecated.
Links up any contained objects, and then Saves the passed in object via the persistence layer.
|
void |
linkUserFields(Object bo)
Deprecated.
Updates all KualiUser or Person objects contained within this BO, based on the UserID as the authoritative key.
|
org.kuali.rice.krad.bo.PersistableBusinessObject |
manageReadOnly(org.kuali.rice.krad.bo.PersistableBusinessObject bo)
Deprecated.
Merges the given business object, but tells the ORM that the object is to be treated as Read Only,
and even if it has changes, it will not be persisted to the database
|
Object |
retrieve(Object object)
Deprecated.
Retrieves an object instance identified by the class of the given object and the object's primary key values.
|
List<? extends org.kuali.rice.krad.bo.PersistableBusinessObject> |
save(List<? extends org.kuali.rice.krad.bo.PersistableBusinessObject> businessObjects)
Deprecated.
Saves the businessObjects on the list via the persistence layer.
|
<T extends org.kuali.rice.krad.bo.PersistableBusinessObject> |
save(T bo)
Deprecated.
Saves the passed in object via the persistence layer.
|
<T extends org.kuali.rice.krad.bo.PersistableBusinessObject> T save(T bo)
bo
- A BusinessObject instance or descendent that you wish to be stored.List<? extends org.kuali.rice.krad.bo.PersistableBusinessObject> save(List<? extends org.kuali.rice.krad.bo.PersistableBusinessObject> businessObjects)
businessObjects
- A Listorg.kuali.rice.krad.bo.PersistableBusinessObject linkAndSave(org.kuali.rice.krad.bo.PersistableBusinessObject bo)
bo
- A BusinessObject instance or descendent that you wish to be stored.List<? extends org.kuali.rice.krad.bo.PersistableBusinessObject> linkAndSave(List<? extends org.kuali.rice.krad.bo.PersistableBusinessObject> businessObjects)
businessObjects
- A List<T> T findBySinglePrimaryKey(Class<T> clazz, Object primaryKey)
findByPrimaryKey(Class, java.util.Map)
clazz
- primaryKey
- <T> T findByPrimaryKey(Class<T> clazz, Map<String,?> primaryKeys)
clazz
- primaryKeys
- Object retrieve(Object object)
object
- <T> Collection<T> findAll(Class<T> clazz)
clazz
- <T> Collection<T> findAllOrderBy(Class<T> clazz, String sortField, boolean sortAscending)
clazz
- <T> Collection<T> findMatching(Class<T> clazz, Map<String,?> fieldValues)
clazz
- fieldValues
- int countMatching(Class clazz, Map<String,?> fieldValues)
clazz
- fieldValues
- int countMatching(Class clazz, Map<String,?> positiveFieldValues, Map<String,?> negativeFieldValues)
clazz
- positiveFieldValues
- negativeFieldValues
- <T> Collection<T> findMatchingOrderBy(Class<T> clazz, Map<String,?> fieldValues, String sortField, boolean sortAscending)
clazz
- fieldValues
- void delete(Object bo)
bo
- void delete(List<? extends org.kuali.rice.krad.bo.PersistableBusinessObject> boList)
boList
- void deleteMatching(Class clazz, Map<String,?> fieldValues)
clazz
- fieldValues
- org.kuali.rice.krad.bo.BusinessObject getReferenceIfExists(org.kuali.rice.krad.bo.BusinessObject bo, String referenceName)
bo
- - populated BusinessObject instance that includes the referenceName propertyreferenceName
- - name of the member/property to loadvoid linkUserFields(Object bo)
bo
- The populated BO (or descendent) instance to be linked & updatedorg.kuali.rice.krad.bo.PersistableBusinessObject manageReadOnly(org.kuali.rice.krad.bo.PersistableBusinessObject bo)
bo
- the business object to managedCopyright © 2004–2014 The Kuali Foundation. All rights reserved.