Class KeyValuesServiceImpl

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

@Deprecated public class KeyValuesServiceImpl extends Object implements KeyValuesService
Deprecated.
This class provides collection retrievals to populate key value pairs of business objects.
  • Constructor Summary

    Constructors
    Constructor
    Description
    Deprecated.
     
  • Method Summary

    Modifier and Type
    Method
    Description
    <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>
    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 Details

    • KeyValuesServiceImpl

      public KeyValuesServiceImpl()
      Deprecated.
  • Method Details

    • 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
      Parameters:
      clazz -
      Returns:
      See Also:
    • 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
      Parameters:
      clazz -
      sortField - - name of the field in the class to sort results by
      sortAscending - - boolean indicating whether to sort ascending or descending
      Returns:
      See Also:
    • 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
      Parameters:
      clazz -
      fieldValues -
      Returns:
      See Also:
    • 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
      Parameters:
      clazz -
      Returns: