Package ome.services.query
Class PojosGetUserImagesQueryDefinition
- java.lang.Object
-
- ome.services.query.Query
-
- ome.services.query.PojosGetUserImagesQueryDefinition
-
- All Implemented Interfaces:
org.springframework.orm.hibernate3.HibernateCallback
public class PojosGetUserImagesQueryDefinition extends Query
-
-
Field Summary
-
Fields inherited from class ome.services.query.Query
FETCH, INNER_JOIN, LEFT_JOIN, newlyEnabledFilters, params
-
-
Constructor Summary
Constructors Constructor Description PojosGetUserImagesQueryDefinition(ome.parameters.Parameters parameters)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
buildQuery(org.hibernate.Session session)
main point of entry for subclasses.protected void
enableFilters(org.hibernate.Session session)
does nothing by default, but can be overridden by subclasses to enable particular filters.-
Methods inherited from class ome.services.query.Query
check, checkParameters, disableFilters, disableQueryCache, doInHibernate, enableQueryCache, get, ownerOrGroupFilters, setCriteria, setQuery, setTimeout, value
-
-
-
-
Method Detail
-
buildQuery
protected void buildQuery(org.hibernate.Session session) throws org.hibernate.HibernateException, java.sql.SQLException
Description copied from class:Query
main point of entry for subclasses. This method must build either aCriteria
or aQuery
instance and make it available viaQuery.setCriteria(org.hibernate.Criteria)
orQuery.setQuery(org.hibernate.Query)
- Specified by:
buildQuery
in classQuery
- Throws:
org.hibernate.HibernateException
java.sql.SQLException
-
enableFilters
protected void enableFilters(org.hibernate.Session session)
Description copied from class:Query
does nothing by default, but can be overridden by subclasses to enable particular filters.- Overrides:
enableFilters
in classQuery
-
-