Package org.hibernate.query.spi
Interface DomainQueryExecutionContext
-
- All Known Implementing Classes:
AbstractQuery
,AbstractSelectionQuery
,DelegatingDomainQueryExecutionContext
,NativeQueryImpl
,ProcedureCallImpl
,QuerySqmImpl
,SqmSelectionQueryImpl
public interface DomainQueryExecutionContext
Context for execution ofQuery
"
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Callback
getCallback()
The callback referenceQueryOptions
getQueryOptions()
The options to use for execution of the queryQueryParameterBindings
getQueryParameterBindings()
The domain parameter bindingsSharedSessionContractImplementor
getSession()
The underlying session
-
-
-
Method Detail
-
getQueryOptions
QueryOptions getQueryOptions()
The options to use for execution of the query
-
getQueryParameterBindings
QueryParameterBindings getQueryParameterBindings()
The domain parameter bindings
-
getCallback
Callback getCallback()
The callback reference
-
getSession
SharedSessionContractImplementor getSession()
The underlying session
-
-