add missing @since annotations
Signed-off-by: Gavin King <gavin@hibernate.org>
This commit is contained in:
parent
0944b52bc3
commit
dd209f9851
|
@ -75,6 +75,8 @@ public interface IdentifierLoadAccess<T> {
|
||||||
* Override the associations fetched by default by specifying
|
* Override the associations fetched by default by specifying
|
||||||
* the complete list of associations to be fetched as an
|
* the complete list of associations to be fetched as an
|
||||||
* {@linkplain jakarta.persistence.EntityGraph entity graph}.
|
* {@linkplain jakarta.persistence.EntityGraph entity graph}.
|
||||||
|
*
|
||||||
|
* @since 6.3
|
||||||
*/
|
*/
|
||||||
default IdentifierLoadAccess<T> withFetchGraph(RootGraph<T> graph) {
|
default IdentifierLoadAccess<T> withFetchGraph(RootGraph<T> graph) {
|
||||||
return with( graph, GraphSemantic.FETCH );
|
return with( graph, GraphSemantic.FETCH );
|
||||||
|
@ -84,6 +86,8 @@ public interface IdentifierLoadAccess<T> {
|
||||||
* Augment the associations fetched by default by specifying a
|
* Augment the associations fetched by default by specifying a
|
||||||
* list of additional associations to be fetched as an
|
* list of additional associations to be fetched as an
|
||||||
* {@linkplain jakarta.persistence.EntityGraph entity graph}.
|
* {@linkplain jakarta.persistence.EntityGraph entity graph}.
|
||||||
|
*
|
||||||
|
* @since 6.3
|
||||||
*/
|
*/
|
||||||
default IdentifierLoadAccess<T> withLoadGraph(RootGraph<T> graph) {
|
default IdentifierLoadAccess<T> withLoadGraph(RootGraph<T> graph) {
|
||||||
return with( graph, GraphSemantic.LOAD );
|
return with( graph, GraphSemantic.LOAD );
|
||||||
|
|
|
@ -55,6 +55,8 @@ public interface MultiIdentifierLoadAccess<T> {
|
||||||
* Override the associations fetched by default by specifying
|
* Override the associations fetched by default by specifying
|
||||||
* the complete list of associations to be fetched as an
|
* the complete list of associations to be fetched as an
|
||||||
* {@linkplain jakarta.persistence.EntityGraph entity graph}.
|
* {@linkplain jakarta.persistence.EntityGraph entity graph}.
|
||||||
|
*
|
||||||
|
* @since 6.3
|
||||||
*/
|
*/
|
||||||
default MultiIdentifierLoadAccess<T> withFetchGraph(RootGraph<T> graph) {
|
default MultiIdentifierLoadAccess<T> withFetchGraph(RootGraph<T> graph) {
|
||||||
return with( graph, GraphSemantic.FETCH );
|
return with( graph, GraphSemantic.FETCH );
|
||||||
|
@ -64,6 +66,8 @@ public interface MultiIdentifierLoadAccess<T> {
|
||||||
* Augment the associations fetched by default by specifying a
|
* Augment the associations fetched by default by specifying a
|
||||||
* list of additional associations to be fetched as an
|
* list of additional associations to be fetched as an
|
||||||
* {@linkplain jakarta.persistence.EntityGraph entity graph}.
|
* {@linkplain jakarta.persistence.EntityGraph entity graph}.
|
||||||
|
*
|
||||||
|
* @since 6.3
|
||||||
*/
|
*/
|
||||||
default MultiIdentifierLoadAccess<T> withLoadGraph(RootGraph<T> graph) {
|
default MultiIdentifierLoadAccess<T> withLoadGraph(RootGraph<T> graph) {
|
||||||
return with( graph, GraphSemantic.LOAD );
|
return with( graph, GraphSemantic.LOAD );
|
||||||
|
|
|
@ -50,6 +50,8 @@ public interface NaturalIdLoadAccess<T> {
|
||||||
* Override the associations fetched by default by specifying
|
* Override the associations fetched by default by specifying
|
||||||
* the complete list of associations to be fetched as an
|
* the complete list of associations to be fetched as an
|
||||||
* {@linkplain jakarta.persistence.EntityGraph entity graph}.
|
* {@linkplain jakarta.persistence.EntityGraph entity graph}.
|
||||||
|
*
|
||||||
|
* @since 6.3
|
||||||
*/
|
*/
|
||||||
default NaturalIdLoadAccess<T> withFetchGraph(RootGraph<T> graph) {
|
default NaturalIdLoadAccess<T> withFetchGraph(RootGraph<T> graph) {
|
||||||
return with( graph, GraphSemantic.FETCH );
|
return with( graph, GraphSemantic.FETCH );
|
||||||
|
@ -59,6 +61,8 @@ public interface NaturalIdLoadAccess<T> {
|
||||||
* Augment the associations fetched by default by specifying a
|
* Augment the associations fetched by default by specifying a
|
||||||
* list of additional associations to be fetched as an
|
* list of additional associations to be fetched as an
|
||||||
* {@linkplain jakarta.persistence.EntityGraph entity graph}.
|
* {@linkplain jakarta.persistence.EntityGraph entity graph}.
|
||||||
|
*
|
||||||
|
* @since 6.3
|
||||||
*/
|
*/
|
||||||
default NaturalIdLoadAccess<T> withLoadGraph(RootGraph<T> graph) {
|
default NaturalIdLoadAccess<T> withLoadGraph(RootGraph<T> graph) {
|
||||||
return with( graph, GraphSemantic.LOAD );
|
return with( graph, GraphSemantic.LOAD );
|
||||||
|
@ -68,6 +72,8 @@ public interface NaturalIdLoadAccess<T> {
|
||||||
* Customize the associations fetched by specifying an
|
* Customize the associations fetched by specifying an
|
||||||
* {@linkplain jakarta.persistence.EntityGraph entity graph},
|
* {@linkplain jakarta.persistence.EntityGraph entity graph},
|
||||||
* and how it should be {@linkplain GraphSemantic interpreted}.
|
* and how it should be {@linkplain GraphSemantic interpreted}.
|
||||||
|
*
|
||||||
|
* @since 6.3
|
||||||
*/
|
*/
|
||||||
NaturalIdLoadAccess<T> with(RootGraph<T> graph, GraphSemantic semantic);
|
NaturalIdLoadAccess<T> with(RootGraph<T> graph, GraphSemantic semantic);
|
||||||
|
|
||||||
|
|
|
@ -63,6 +63,8 @@ public interface NaturalIdMultiLoadAccess<T> {
|
||||||
* Override the associations fetched by default by specifying
|
* Override the associations fetched by default by specifying
|
||||||
* the complete list of associations to be fetched as an
|
* the complete list of associations to be fetched as an
|
||||||
* {@linkplain jakarta.persistence.EntityGraph entity graph}.
|
* {@linkplain jakarta.persistence.EntityGraph entity graph}.
|
||||||
|
*
|
||||||
|
* @since 6.3
|
||||||
*/
|
*/
|
||||||
default NaturalIdMultiLoadAccess<T> withFetchGraph(RootGraph<T> graph) {
|
default NaturalIdMultiLoadAccess<T> withFetchGraph(RootGraph<T> graph) {
|
||||||
return with( graph, GraphSemantic.FETCH );
|
return with( graph, GraphSemantic.FETCH );
|
||||||
|
@ -72,6 +74,8 @@ public interface NaturalIdMultiLoadAccess<T> {
|
||||||
* Augment the associations fetched by default by specifying a
|
* Augment the associations fetched by default by specifying a
|
||||||
* list of additional associations to be fetched as an
|
* list of additional associations to be fetched as an
|
||||||
* {@linkplain jakarta.persistence.EntityGraph entity graph}.
|
* {@linkplain jakarta.persistence.EntityGraph entity graph}.
|
||||||
|
*
|
||||||
|
* @since 6.3
|
||||||
*/
|
*/
|
||||||
default NaturalIdMultiLoadAccess<T> withLoadGraph(RootGraph<T> graph) {
|
default NaturalIdMultiLoadAccess<T> withLoadGraph(RootGraph<T> graph) {
|
||||||
return with( graph, GraphSemantic.LOAD );
|
return with( graph, GraphSemantic.LOAD );
|
||||||
|
|
|
@ -44,6 +44,8 @@ public interface SimpleNaturalIdLoadAccess<T> {
|
||||||
* Override the associations fetched by default by specifying
|
* Override the associations fetched by default by specifying
|
||||||
* the complete list of associations to be fetched as an
|
* the complete list of associations to be fetched as an
|
||||||
* {@linkplain jakarta.persistence.EntityGraph entity graph}.
|
* {@linkplain jakarta.persistence.EntityGraph entity graph}.
|
||||||
|
*
|
||||||
|
* @since 6.3
|
||||||
*/
|
*/
|
||||||
default SimpleNaturalIdLoadAccess<T> withFetchGraph(RootGraph<T> graph) {
|
default SimpleNaturalIdLoadAccess<T> withFetchGraph(RootGraph<T> graph) {
|
||||||
return with( graph, GraphSemantic.FETCH );
|
return with( graph, GraphSemantic.FETCH );
|
||||||
|
@ -53,6 +55,8 @@ public interface SimpleNaturalIdLoadAccess<T> {
|
||||||
* Augment the associations fetched by default by specifying a
|
* Augment the associations fetched by default by specifying a
|
||||||
* list of additional associations to be fetched as an
|
* list of additional associations to be fetched as an
|
||||||
* {@linkplain jakarta.persistence.EntityGraph entity graph}.
|
* {@linkplain jakarta.persistence.EntityGraph entity graph}.
|
||||||
|
*
|
||||||
|
* @since 6.3
|
||||||
*/
|
*/
|
||||||
default SimpleNaturalIdLoadAccess<T> withLoadGraph(RootGraph<T> graph) {
|
default SimpleNaturalIdLoadAccess<T> withLoadGraph(RootGraph<T> graph) {
|
||||||
return with( graph, GraphSemantic.LOAD );
|
return with( graph, GraphSemantic.LOAD );
|
||||||
|
@ -62,6 +66,8 @@ public interface SimpleNaturalIdLoadAccess<T> {
|
||||||
* Customize the associations fetched by specifying an
|
* Customize the associations fetched by specifying an
|
||||||
* {@linkplain jakarta.persistence.EntityGraph entity graph},
|
* {@linkplain jakarta.persistence.EntityGraph entity graph},
|
||||||
* and how it should be {@linkplain GraphSemantic interpreted}.
|
* and how it should be {@linkplain GraphSemantic interpreted}.
|
||||||
|
*
|
||||||
|
* @since 6.3
|
||||||
*/
|
*/
|
||||||
SimpleNaturalIdLoadAccess<T> with(RootGraph<T> graph, GraphSemantic semantic);
|
SimpleNaturalIdLoadAccess<T> with(RootGraph<T> graph, GraphSemantic semantic);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue