|
5 | 5 | */
|
6 | 6 | package org.hibernate.reactive.mutiny;
|
7 | 7 |
|
8 |
| -import java.lang.invoke.MethodHandles; |
9 |
| -import java.util.List; |
10 |
| -import java.util.function.BiFunction; |
11 |
| -import java.util.function.Function; |
12 |
| - |
13 | 8 | import org.hibernate.Cache;
|
14 | 9 | import org.hibernate.CacheMode;
|
15 | 10 | import org.hibernate.Filter;
|
|
23 | 18 | import org.hibernate.engine.spi.SharedSessionContractImplementor;
|
24 | 19 | import org.hibernate.jpa.internal.util.FlushModeTypeHelper;
|
25 | 20 | import org.hibernate.proxy.HibernateProxy;
|
26 |
| -import org.hibernate.query.Order; |
27 | 21 | import org.hibernate.query.Page;
|
28 | 22 | import org.hibernate.query.criteria.HibernateCriteriaBuilder;
|
29 | 23 | import org.hibernate.query.criteria.JpaCriteriaInsert;
|
|
49 | 43 | import jakarta.persistence.criteria.CriteriaUpdate;
|
50 | 44 | import jakarta.persistence.metamodel.Attribute;
|
51 | 45 | import jakarta.persistence.metamodel.Metamodel;
|
| 46 | +import java.lang.invoke.MethodHandles; |
| 47 | +import java.util.List; |
| 48 | +import java.util.function.BiFunction; |
| 49 | +import java.util.function.Function; |
52 | 50 |
|
53 | 51 | import static org.hibernate.engine.internal.ManagedTypeHelper.asPersistentAttributeInterceptable;
|
54 | 52 | import static org.hibernate.engine.internal.ManagedTypeHelper.isPersistentAttributeInterceptable;
|
@@ -360,37 +358,6 @@ default SelectionQuery<R> setLockMode(String alias, LockModeType lockModeType) {
|
360 | 358 | return setLockMode( alias, convertToLockMode(lockModeType) );
|
361 | 359 | }
|
362 | 360 |
|
363 |
| -// /** |
364 |
| -// * Set the {@link LockOptions} to use for the whole query. |
365 |
| -// * |
366 |
| -// * @see org.hibernate.query.Query#setLockOptions(LockOptions) |
367 |
| -// */ |
368 |
| -// Query<R> setLockOptions(LockOptions lockOptions); |
369 |
| - |
370 |
| - /** |
371 |
| - * If the result type of this query is an entity class, add one or more |
372 |
| - * {@linkplain Order rules} for ordering the query results. |
373 |
| - * |
374 |
| - * @param orderList one or more instances of {@link Order} |
375 |
| - * |
376 |
| - * @see Order |
377 |
| - * |
378 |
| - * @see org.hibernate.query.Query#setOrder(List) |
379 |
| - */ |
380 |
| - SelectionQuery<R> setOrder(List<Order<? super R>> orderList); |
381 |
| - |
382 |
| - /** |
383 |
| - * If the result type of this query is an entity class, add a |
384 |
| - * {@linkplain Order rule} for ordering the query results. |
385 |
| - * |
386 |
| - * @param order an instance of {@link Order} |
387 |
| - * |
388 |
| - * @see Order |
389 |
| - * |
390 |
| - * @see org.hibernate.query.Query#setOrder(Order) |
391 |
| - */ |
392 |
| - SelectionQuery<R> setOrder(Order<? super R> order); |
393 |
| - |
394 | 361 | /**
|
395 | 362 | * Set the {@link EntityGraph} that will be used as a fetch plan for
|
396 | 363 | * the root entity returned by this query.
|
|
0 commit comments