Changed Methods |
void closeIterator(Iterator<?> )
|
Change in signature from Iterator to Iterator<?> .
|
Immediately close an Iterator created by any of the various
{@code iterate(..)} operations, instead of waiting until the
session is closed or disconnected. |
void deleteAll(Collection<?> )
|
Change in signature from Collection to Collection<?> .
|
Delete all given persistent instances. |
List<Object> executeFind(HibernateCallback<?> )
|
Change in return type from List to List<Object> .
|
Execute the specified action assuming that the result object is a
List. |
List<Object> findByNamedQueryAndValueBean(String, Object)
|
Change in return type from List to List<Object> .
|
Execute a named query, binding the properties of the given bean to
":" named parameters in the query string. |
List<Object> findByValueBean(String, Object)
|
Change in return type from List to List<Object> .
|
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 to List<?> .
|
Execute an HQL query. |
List<Object> find(String, Object)
|
Change in return type from List to List<Object> .
|
Execute an HQL query, binding one value to a "?" parameter in the
query string. |
List<Object> find(String, Object[])
|
Change in return type from List to List<Object> .
|
Execute an HQL query, binding a number of values to "?" parameters
in the query string. |
List<Object> findByCriteria(DetachedCriteria )
|
Change in return type from List to List<Object> .
|
Execute a query based on a given Hibernate criteria object. |
List<Object> findByCriteria(DetachedCriteria, int, int)
|
Change in return type from List to List<Object> .
|
Execute a query based on the given Hibernate criteria object. |
List<Object> findByExample(Object )
|
Change in return type from List to List<Object> .
|
Execute a query based on the given example entity object. |
List<Object> findByExample(Object, int, int)
|
Change in return type from List to List<Object> .
|
Execute a query based on a given example entity object. |
List<Object> findByExample(String, Object)
|
Change in return type from List to List<Object> .
|
Execute a query based on the given example entity object. |
List<Object> findByExample(String, Object, int, int)
|
Change in return type from List to List<Object> .
|
Execute a query based on a given example entity object. |
List<Object> findByNamedParam(String, String, Object)
|
Change in return type from List to List<Object> .
|
Execute an HQL query, binding one value to a ":" named parameter
in the query string. |
List<Object> findByNamedParam(String, String[], Object[])
|
Change in return type from List to List<Object> .
|
Execute an HQL query, binding a number of values to ":" named
parameters in the query string. |
List<Object> findByNamedQuery(String )
|
Change in return type from List to List<Object> .
|
Execute a named query. |
List<Object> findByNamedQuery(String, Object)
|
Change in return type from List to List<Object> .
|
Execute a named query, binding one value to a "?" parameter in
the query string. |
List<Object> findByNamedQuery(String, Object[])
|
Change in return type from List to List<Object> .
|
Execute a named query binding a number of values to "?" parameters
in the query string. |
List<Object> findByNamedQueryAndNamedParam(String, String, Object)
|
Change in return type from List to List<Object> .
|
Execute a named query, binding one value to a ":" named parameter
in the query string. |
List<Object> findByNamedQueryAndNamedParam(String, String[], Object[])
|
Change in return type from List to List<Object> .
|
Execute a named query, binding a number of values to ":" named
parameters in the query string. |
Iterator<Object> iterate(String )
|
Change in return type from Iterator to Iterator<Object> .
|
Execute a query for persistent instances. |
Iterator<Object> iterate(String, Object)
|
Change in return type from Iterator to Iterator<Object> .
|
Execute a query for persistent instances, binding one value
to a "?" parameter in the query string. |
Iterator<Object> iterate(String, Object[])
|
Change in return type from Iterator to Iterator<Object> .
|
Execute a query for persistent instances, binding a number of
values to "?" parameters in the query string. |