Example usage for org.hibernate.engine.query.spi HQLQueryPlan performList

List of usage examples for org.hibernate.engine.query.spi HQLQueryPlan performList

Introduction

In this page you can find the example usage for org.hibernate.engine.query.spi HQLQueryPlan performList.

Prototype

@SuppressWarnings("unchecked")
public List performList(QueryParameters queryParameters, SharedSessionContractImplementor session)
        throws HibernateException 

Source Link

Document

Coordinates the efforts to perform a list across all the included query translators.

Usage

From source file:com.blazebit.persistence.integration.hibernate.Hibernate43Access.java

License:Apache License

@Override
public List<Object> performList(HQLQueryPlan queryPlan, SessionImplementor sessionImplementor,
        QueryParameters queryParameters) {
    return queryPlan.performList(queryParameters, sessionImplementor);
}