public interface

HibernateContentQueryFactory

com.atlassian.confluence.content.persistence.hibernate.HibernateContentQueryFactory

Class Overview

Interface that needs to be implemented by a HibernateContentQuery plugin module.

Summary

Public Methods
Query getQuery(Session session, Object... parameters)
Get the hibernate implementation of the query this factory wishes to generate.

Public Methods

public Query getQuery (Session session, Object... parameters)

Get the hibernate implementation of the query this factory wishes to generate. Any parameters for the query should be set, as should whether the query is cacheable or not. Limits (offset/max results) will be set by the DAO.

Parameters
session the hibernate session in which to create the query
parameters the parameters to be set on the query
Returns
  • the hibernate implementation of the query
Throws
HibernateException