File tree Expand file tree Collapse file tree 3 files changed +10
-6
lines changed
hibernate-core/src/main/java/org/hibernate Expand file tree Collapse file tree 3 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 9
9
* Defines strategies for post-processing criteria query
10
10
* results into a form convenient to the application.
11
11
* <p>
12
- * @deprecated use {@link org.hibernate.query.TupleTransformer}
13
- * and/or {@link org.hibernate.query.ResultListTransformer}
12
+ * @apiNote This entire package is considered deprecated. Use
13
+ * {@link org.hibernate.query.TupleTransformer} and/or
14
+ * {@link org.hibernate.query.ResultListTransformer}
14
15
* which are defined in {@link org.hibernate.query}.
15
16
*/
16
- @ Deprecated
17
+ @ Remove
17
18
package org .hibernate .transform ;
19
+
20
+ import org .hibernate .Remove ;
Original file line number Diff line number Diff line change 6
6
*/
7
7
package org .hibernate .tuple .entity ;
8
8
9
+ import org .hibernate .Internal ;
9
10
import org .hibernate .dialect .Dialect ;
10
11
import org .hibernate .engine .spi .SharedSessionContractImplementor ;
11
12
import org .hibernate .generator .BeforeExecutionGenerator ;
28
29
/**
29
30
* Handles value generation for composite properties.
30
31
*/
32
+ @ Internal
31
33
class CompositeGeneratorBuilder {
32
34
private final String entityName ;
33
35
private final Property mappingProperty ;
Original file line number Diff line number Diff line change 9
9
* Most contracts here have been replaced by the new runtime
10
10
* {@linkplain org.hibernate.metamodel.mapping mapping model}.
11
11
* <p>
12
- * @deprecated Value-generation related contracts have been replaced by
13
- * {@link org.hibernate.generator}
12
+ * @apiNote This entire package (and sub-packages) is considered deprecated
14
13
*/
15
- @ Remove @ Deprecated
14
+ @ Remove
16
15
package org .hibernate .tuple ;
17
16
18
17
import org .hibernate .Remove ;
You can’t perform that action at this time.
0 commit comments