add a couple of @see xrefs
This commit is contained in:
parent
bee0480d12
commit
b293a6b2ac
|
@ -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
|
||||
*/
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue