HHH-14384 Fix QueryProducer.createNativeQuery documentation

This commit is contained in:
Nathan Xu 2021-01-15 14:26:25 -05:00 committed by Christian Beikov
parent d5b0c167c8
commit 2cf9ec856c
1 changed files with 2 additions and 2 deletions

View File

@ -50,7 +50,7 @@ public interface QueryProducer {
* Create a typed {@link Query} instance for the given HQL/JPQL query string.
*
* @param queryString The HQL/JPQL query
*
* @param resultClass The type of the query result
* @return The Query instance for manipulation and execution
*
* @see javax.persistence.EntityManager#createQuery(String,Class)
@ -123,7 +123,7 @@ public interface QueryProducer {
* implicit mapping to the specified Java type.
*
* @param sqlString Native (SQL) query string
* @param resultClass The Java type to map results to
* @param resultClass The Java entity type to map results to
*
* @return The NativeQuery instance for manipulation and execution
*