Generated by
JDiff

Interface org.springframework.orm.hibernate3.HibernateOperations

Removed Methods
List<Object> findByExample(Object) Execute a query based on the given example entity object.
List<Object> findByExample(Object, int, int) Execute a query based on a given example entity object.
List<Object> findByExample(String, Object) Execute a query based on the given example entity object.
List<Object> findByExample(String, Object, int, int) Execute a query based on a given example entity object.
 

Added Methods
List<T> findByExample(T) Execute a query based on the given example entity object.
List<T> findByExample(T, int, int) Execute a query based on a given example entity object.
List<T> findByExample(String, T) Execute a query based on the given example entity object.
List<T> findByExample(String, T, int, int) Execute a query based on a given example entity object.
 

Changed Methods
List<?> executeFind(HibernateCallback<?>) Change in return type from List<Object> to List<?>.
as of Spring 3.2.7, in favor of using a regular {@link #execute} call with a generic List type declared
List<?> findByNamedQueryAndValueBean(String, Object) Change in return type from List<Object> to List<?>.
Execute a named query, binding the properties of the given bean to ":" named parameters in the query string.
List<?> findByValueBean(String, Object) Change in return type from List<Object> to List<?>.
Execute an HQL query, binding the properties of the given bean to named parameters in the query string.
List<?> find(String) Change in return type from List<Object> to List<?>.
Execute an HQL query.
List<?> find(String, Object) Change in return type from List<Object> to List<?>.
Execute an HQL query, binding one value to a "?" parameter in the query string.
List<?> find(String, Object[]) Change in return type from List<Object> to List<?>.
Execute an HQL query, binding a number of values to "?" parameters in the query string.
List<?> findByCriteria(DetachedCriteria) Change in return type from List<Object> to List<?>.
Execute a query based on a given Hibernate criteria object.
List<?> findByCriteria(DetachedCriteria, int, int) Change in return type from List<Object> to List<?>.
Execute a query based on the given Hibernate criteria object.
List<?> findByNamedParam(String, String, Object) Change in return type from List<Object> to List<?>.
Execute an HQL query, binding one value to a ":" named parameter in the query string.
List<?> findByNamedParam(String, String[], Object[]) Change in return type from List<Object> to List<?>.
Execute an HQL query, binding a number of values to ":" named parameters in the query string.
List<?> findByNamedQuery(String) Change in return type from List<Object> to List<?>.
Execute a named query.
List<?> findByNamedQuery(String, Object) Change in return type from List<Object> to List<?>.
Execute a named query, binding one value to a "?" parameter in the query string.
List<?> findByNamedQuery(String, Object[]) Change in return type from List<Object> to List<?>.
Execute a named query binding a number of values to "?" parameters in the query string.
List<?> findByNamedQueryAndNamedParam(String, String, Object) Change in return type from List<Object> to List<?>.
Execute a named query, binding one value to a ":" named parameter in the query string.
List<?> findByNamedQueryAndNamedParam(String, String[], Object[]) Change in return type from List<Object> to List<?>.
Execute a named query, binding a number of values to ":" named parameters in the query string.
Iterator<?> iterate(String) Change in return type from Iterator<Object> to Iterator<?>.
Execute a query for persistent instances.
Iterator<?> iterate(String, Object) Change in return type from Iterator<Object> to Iterator<?>.
Execute a query for persistent instances, binding one value to a "?" parameter in the query string.
Iterator<?> iterate(String, Object[]) Change in return type from Iterator<Object> to Iterator<?>.
Execute a query for persistent instances, binding a number of values to "?" parameters in the query string.