clean up @deprecation

This commit is contained in:
Steve Ebersole 2024-07-30 14:52:07 -05:00
parent 8ed3913610
commit dcc9f66d78
3 changed files with 10 additions and 6 deletions

View File

@ -9,9 +9,12 @@
* Defines strategies for post-processing criteria query
* results into a form convenient to the application.
* <p>
* @deprecated use {@link org.hibernate.query.TupleTransformer}
* and/or {@link org.hibernate.query.ResultListTransformer}
* @apiNote This entire package is considered deprecated. Use
* {@link org.hibernate.query.TupleTransformer} and/or
* {@link org.hibernate.query.ResultListTransformer}
* which are defined in {@link org.hibernate.query}.
*/
@Deprecated
@Remove
package org.hibernate.transform;
import org.hibernate.Remove;

View File

@ -6,6 +6,7 @@
*/
package org.hibernate.tuple.entity;
import org.hibernate.Internal;
import org.hibernate.dialect.Dialect;
import org.hibernate.engine.spi.SharedSessionContractImplementor;
import org.hibernate.generator.BeforeExecutionGenerator;
@ -28,6 +29,7 @@ import static org.hibernate.generator.EventTypeSets.NONE;
/**
* Handles value generation for composite properties.
*/
@Internal
class CompositeGeneratorBuilder {
private final String entityName;
private final Property mappingProperty;

View File

@ -9,10 +9,9 @@
* Most contracts here have been replaced by the new runtime
* {@linkplain org.hibernate.metamodel.mapping mapping model}.
* <p>
* @deprecated Value-generation related contracts have been replaced by
* {@link org.hibernate.generator}
* @apiNote This entire package (and sub-packages) is considered deprecated
*/
@Remove @Deprecated
@Remove
package org.hibernate.tuple;
import org.hibernate.Remove;