org.jboss.seam.framework
Class HibernateEntityQuery<E>

java.lang.Object
  extended by org.jboss.seam.framework.Controller
      extended by org.jboss.seam.framework.PersistenceController<T>
          extended by org.jboss.seam.framework.Query<org.hibernate.Session,E>
              extended by org.jboss.seam.framework.HibernateEntityQuery<E>
All Implemented Interfaces:
Serializable

public class HibernateEntityQuery<E>
extends Query<org.hibernate.Session,E>

A Query object for Hibernate.

Author:
Gavin King
See Also:
Serialized Form

Constructor Summary
HibernateEntityQuery()
           
 
Method Summary
protected  org.hibernate.Query createCountQuery()
           
protected  org.hibernate.Query createQuery()
           
protected  Boolean getCacheable()
           
protected  String getCacheRegion()
           
protected  Integer getFetchSize()
           
protected  String getPersistenceContextName()
           
 Long getResultCount()
           
 List<E> getResultList()
           
 org.hibernate.Session getSession()
           
 E getSingleResult()
           
 boolean isNextExists()
          Returns true if next page exists
 void refresh()
           
protected  void setCacheable(Boolean cacheable)
           
protected  void setCacheRegion(String cacheRegion)
           
protected  void setFetchSize(Integer fetchSize)
           
 void setSession(org.hibernate.Session session)
           
 void validate()
           
 
Methods inherited from class org.jboss.seam.framework.Query
clearDataModel, evaluateAllParameters, first, getCountEjbql, getDataModel, getDataModelSelection, getDataModelSelectionIndex, getEjbql, getFirstResult, getGroupBy, getLastFirstResult, getMaxResults, getNextFirstResult, getOrder, getOrderColumn, getOrderDirection, getPageCount, getPreviousFirstResult, getQueryParameters, getQueryParameterValues, getRenderedEjbql, getRestrictionExpressionStrings, getRestrictionParameters, getRestrictionParameterValues, getRestrictions, isAnyParameterDirty, isPreviousExists, isRestrictionParameterSet, last, next, parseEjbql, previous, setEjbql, setFirstResult, setGroupBy, setMaxResults, setOrder, setOrderColumn, setOrderDirection, setQueryParameterValues, setRestrictionExpressionStrings, setRestrictionParameterValues, setRestrictions, truncResultList
 
Methods inherited from class org.jboss.seam.framework.PersistenceController
getPersistenceContext, setPersistenceContext
 
Methods inherited from class org.jboss.seam.framework.Controller
addCookie, addFacesMessage, addFacesMessageFromResourceBundle, debug, debug, error, error, failValidation, fatal, fatal, getApplicationContext, getBusinessProcessContext, getComponentInstance, getComponentInstance, getConversation, getConversationContext, getCookie, getEventContext, getEvents, getFacesContext, getFacesMessages, getIdentity, getLog, getMessages, getMethodContext, getPageContext, getRedirect, getSessionContext, getStatusMessages, getValidator, getValidator, info, info, interpolate, invalidateSession, isTransactionMarkedRollback, raiseAsynchronousEvent, raiseEvent, raiseTransactionSuccessEvent, render, sendHttpError, sendHttpError, trace, trace, validationFailed, validationSucceeded, warn, warn
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

HibernateEntityQuery

public HibernateEntityQuery()
Method Detail

validate

public void validate()
Overrides:
validate in class Query<org.hibernate.Session,E>

getResultList

@Transactional
public List<E> getResultList()
Specified by:
getResultList in class Query<org.hibernate.Session,E>

isNextExists

@Transactional
public boolean isNextExists()
Description copied from class: Query
Returns true if next page exists

Specified by:
isNextExists in class Query<org.hibernate.Session,E>

getSingleResult

@Transactional
public E getSingleResult()
Specified by:
getSingleResult in class Query<org.hibernate.Session,E>

getResultCount

@Transactional
public Long getResultCount()
Specified by:
getResultCount in class Query<org.hibernate.Session,E>

refresh

public void refresh()
Overrides:
refresh in class Query<org.hibernate.Session,E>

getSession

public org.hibernate.Session getSession()

setSession

public void setSession(org.hibernate.Session session)

getPersistenceContextName

protected String getPersistenceContextName()
Specified by:
getPersistenceContextName in class PersistenceController<org.hibernate.Session>

createQuery

protected org.hibernate.Query createQuery()

createCountQuery

protected org.hibernate.Query createCountQuery()

getCacheable

protected Boolean getCacheable()

setCacheable

protected void setCacheable(Boolean cacheable)

getCacheRegion

protected String getCacheRegion()

setCacheRegion

protected void setCacheRegion(String cacheRegion)

getFetchSize

protected Integer getFetchSize()

setFetchSize

protected void setFetchSize(Integer fetchSize)