org.kuali.rice.krad.service.impl
Class KeyValuesServiceImpl

java.lang.Object
  extended by org.kuali.rice.krad.service.impl.KeyValuesServiceImpl
All Implemented Interfaces:
KeyValuesService

Deprecated.

@Deprecated
public class KeyValuesServiceImpl
extends Object
implements KeyValuesService

This class provides collection retrievals to populate key value pairs of business objects.


Constructor Summary
KeyValuesServiceImpl()
          Deprecated.  
 
Method Summary
<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>
findAllInactive(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> Collection<T>
findMatching(Class<T> clazz, Map<String,Object> 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.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

KeyValuesServiceImpl

public KeyValuesServiceImpl()
Deprecated. 
Method Detail

findAll

public <T> Collection<T> findAll(Class<T> clazz)
Deprecated. 
Description copied from interface: KeyValuesService
Retrieves a collection of business objects populated with data, such that each record in the database populates a new object instance. This will only retrieve business objects by class type.

Specified by:
findAll in interface KeyValuesService
Returns:
See Also:
KeyValuesService.findAll(java.lang.Class)

findAllOrderBy

public <T> Collection<T> findAllOrderBy(Class<T> clazz,
                                        String sortField,
                                        boolean sortAscending)
Deprecated. 
Description copied from interface: KeyValuesService
Retrieves a collection of business objects populated with data, such that each record in the database populates a new object instance. This will only retrieve business objects by class type. Performs a sort on the result collection on the given sort field.

Specified by:
findAllOrderBy in interface KeyValuesService
sortField - - name of the field in the class to sort results by
sortAscending - - boolean indicating whether to sort ascending or descending
Returns:
See Also:
KeyValuesService.findAllOrderBy(java.lang.Class, java.lang.String, boolean)

findMatching

public <T> Collection<T> findMatching(Class<T> clazz,
                                      Map<String,Object> fieldValues)
Deprecated. 
Description copied from interface: KeyValuesService
This method retrieves a collection of business objects populated with data, such that each record in the database populates a new object instance. This will retrieve business objects by class type and also by criteria passed in as key-value pairs, specifically attribute name and its expected value.

Specified by:
findMatching in interface KeyValuesService
Returns:
See Also:
BusinessObjectService.findMatching(java.lang.Class, java.util.Map)

findAllInactive

public <T> Collection<T> findAllInactive(Class<T> clazz)
Deprecated. 
Description copied from interface: KeyValuesService
Retrieves a collection of business objects populated with data, such that each record in the database populates a new object instance. This will only retrieve business objects by class type.

Specified by:
findAllInactive in interface KeyValuesService
Returns:


Copyright © 2005–2014 The Kuali Foundation. All rights reserved.