99
99
100
100
/**
101
101
* Default {@link JpaQuery} implementation.
102
- *
103
102
* @param <T> Query result type
104
- *
105
103
* @since 5.0.0
106
104
*/
107
105
public class DefaultJpaQuery <T > implements JpaQuery <T > {
@@ -167,8 +165,8 @@ public QueryConfiguration getQueryConfiguration() {
167
165
/*
168
166
* (non-Javadoc)
169
167
* @see
170
- * com.holonplatform.core.ExpressionResolver.ExpressionResolverBuilder#withExpressionResolver(com.holonplatform.core
171
- * .ExpressionResolver)
168
+ * com.holonplatform.core.ExpressionResolver.ExpressionResolverBuilder#withExpressionResolver(com.holonplatform.
169
+ * core .ExpressionResolver)
172
170
*/
173
171
@ Override
174
172
public <E extends com .holonplatform .core .Expression , R extends com .holonplatform .core .Expression > JpaQuery <T > withExpressionResolver (
@@ -235,8 +233,8 @@ public <C> JpaQuery<T> parameter(ConfigProperty<C> property, C value) {
235
233
236
234
/*
237
235
* (non-Javadoc)
238
- * @see
239
- * com.holonplatform.core.datastore.DataTarget.DataTargetSupport#target(com.holonplatform.core.datastore. DataTarget)
236
+ * @see com.holonplatform.core.datastore.DataTarget.DataTargetSupport#target(com.holonplatform.core.datastore.
237
+ * DataTarget)
240
238
*/
241
239
@ Override
242
240
public JpaQuery <T > target (DataTarget <?> target ) {
@@ -354,7 +352,8 @@ public <P> JpaQuery<T> innerJoin(EntityPath<P> target, Path<P> alias) {
354
352
355
353
/*
356
354
* (non-Javadoc)
357
- * @see com.holonplatform.datastore.jpa.querydsl.JpaQuery#innerJoin(com.querydsl.core.types.CollectionExpression)
355
+ * @see
356
+ * com.holonplatform.datastore.jpa.querydsl.JpaQuery#innerJoin(com.querydsl.core.types.CollectionExpression)
358
357
*/
359
358
@ Override
360
359
public <P > JpaQuery <T > innerJoin (CollectionExpression <?, P > target ) {
@@ -363,7 +362,8 @@ public <P> JpaQuery<T> innerJoin(CollectionExpression<?, P> target) {
363
362
364
363
/*
365
364
* (non-Javadoc)
366
- * @see com.holonplatform.datastore.jpa.querydsl.JpaQuery#innerJoin(com.querydsl.core.types.CollectionExpression,
365
+ * @see
366
+ * com.holonplatform.datastore.jpa.querydsl.JpaQuery#innerJoin(com.querydsl.core.types.CollectionExpression,
367
367
* com.querydsl.core.types.Path)
368
368
*/
369
369
@ Override
@@ -525,7 +525,8 @@ public <P> JpaQuery<T> rightJoin(EntityPath<P> target, Path<P> alias) {
525
525
526
526
/*
527
527
* (non-Javadoc)
528
- * @see com.holonplatform.datastore.jpa.querydsl.JpaQuery#rightJoin(com.querydsl.core.types.CollectionExpression)
528
+ * @see
529
+ * com.holonplatform.datastore.jpa.querydsl.JpaQuery#rightJoin(com.querydsl.core.types.CollectionExpression)
529
530
*/
530
531
@ Override
531
532
public <P > JpaQuery <T > rightJoin (CollectionExpression <?, P > target ) {
@@ -534,7 +535,8 @@ public <P> JpaQuery<T> rightJoin(CollectionExpression<?, P> target) {
534
535
535
536
/*
536
537
* (non-Javadoc)
537
- * @see com.holonplatform.datastore.jpa.querydsl.JpaQuery#rightJoin(com.querydsl.core.types.CollectionExpression,
538
+ * @see
539
+ * com.holonplatform.datastore.jpa.querydsl.JpaQuery#rightJoin(com.querydsl.core.types.CollectionExpression,
538
540
* com.querydsl.core.types.Path)
539
541
*/
540
542
@ Override
@@ -1063,7 +1065,7 @@ protected Query createQuery(JPQLTemplates jpqlTemplates, EntityManager entityMan
1063
1065
operationContext .trace (queryString .replace ('\n' , ' ' ));
1064
1066
1065
1067
final Query query = entityManager .createQuery (queryString );
1066
- JPAUtil .setConstants (query , serializer .getConstantToLabel (), getMetadata ().getParams ());
1068
+ JPAUtil .setConstants (query , serializer .getConstants (), getMetadata ().getParams ());
1067
1069
1068
1070
// check restrictions
1069
1071
if (modifiers != null && modifiers .isRestricting ()) {
0 commit comments