add a couple of @see xrefs

This commit is contained in:
Gavin 2022-12-26 19:58:18 +01:00
parent bee0480d12
commit b293a6b2ac
2 changed files with 4 additions and 1 deletions

View File

@ -51,6 +51,7 @@ import static java.lang.annotation.RetentionPolicy.RUNTIME;
* @see Filter
* @see DialectOverride.Where
* @see org.hibernate.cfg.AvailableSettings#USE_ENTITY_WHERE_CLAUSE_FOR_COLLECTIONS
* @see WhereJoinTable
*
* @author Emmanuel Bernard
*/

View File

@ -16,10 +16,12 @@ import java.lang.annotation.Target;
* SQL when querying the {@link jakarta.persistence.JoinTable join table}
* of a collection.
* <p>
* For example, {@code @Where("deleted = false")} could be used to hide
* For example, {@code @Where("status <> 'DELETED'")} could be used to hide
* associations which have been soft-deleted from an association table.
*
* @author Emmanuel Bernard
*
* @see Where
*/
@Target({ElementType.TYPE, ElementType.METHOD, ElementType.FIELD})
@Retention(RetentionPolicy.RUNTIME)