org.perfectjpattern.jee.integration.dao
Class HibernateQueryAdapter
java.lang.Object
org.perfectjpattern.core.structural.AbstractSurrogate<T,A>
org.perfectjpattern.core.structural.adapter.Adapter<IQuery,org.hibernate.Query>
org.perfectjpattern.jee.integration.dao.HibernateQueryAdapter
- All Implemented Interfaces:
- InvocationHandler, IAdapter<IQuery,org.hibernate.Query>, ISurrogate<IQuery>
public class HibernateQueryAdapter
- extends Adapter<IQuery,org.hibernate.Query>
Adapts Hibernate's Query
to the JPA implementation-free
PerfectJPattern's IQuery
definition
- Version:
- $Revision: 1.0 $Date: Feb 18, 2009 11:54:49 AM $
- Author:
- Giovanni Azua
-
-
HibernateQueryAdapter
public HibernateQueryAdapter(org.hibernate.Query anAdaptee)
throws IllegalArgumentException
- Constructs a
HibernateQueryAdapter
from the Adaptee
Query
instance
- Parameters:
anAdaptee
- Adaptee Hibernate Query
- Throws:
IllegalArgumentException
invokeUnderlying
protected Object invokeUnderlying(Method aMethod,
Object[] anArguments)
throws Throwable
- Returns the result of the Method invocation. This method has two
main purposes:
- Provides facility to invoke a method on the actual Underlying
- Concrete surrogate implementations that override this method have
a single point to control access to the actual Underlying method
invokation.
- Overrides:
invokeUnderlying
in class Adapter<IQuery,org.hibernate.Query>
- Parameters:
aMethod
- Method to invokeanArguments
- Array of input arguments for the Method to invoke
- Returns:
- result of the Method invocation
- Throws:
Throwable
getResultList
public <E> List<E> getResultList()
getSingleResult
public Object getSingleResult()
- Returns the query result as a single result
- Returns:
- query result as a single result
Copyright © 2007-2009. All Rights Reserved.