Interface CollectionMetadataContext
-
public interface CollectionMetadataContext
Metadata building context used for collections to hold per-collection state.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description Collection
getCollection()
EntityMappingData
getEntityMappingData()
CompositeMapperBuilder
getMapperBuilder()
PropertyAuditingData
getPropertyAuditingData()
default String
getPropertyName()
String
getReferencedEntityName()
EntityConfiguration
getReferencingEntityConfiguration()
String
getReferencingEntityName()
default boolean
isFakeOneToManyBidirectional()
default boolean
isInverseOneToMany()
default boolean
isMiddleTableCollection()
default boolean
isOneToManyAttached()
default boolean
isOneToManySingleTableSubclass()
default boolean
isOwningManyToOneWithBidrectionalJoinTable()
-
-
-
Method Detail
-
getEntityMappingData
EntityMappingData getEntityMappingData()
-
getCollection
Collection getCollection()
-
getMapperBuilder
CompositeMapperBuilder getMapperBuilder()
-
getReferencedEntityName
String getReferencedEntityName()
-
getReferencingEntityName
String getReferencingEntityName()
-
getReferencingEntityConfiguration
EntityConfiguration getReferencingEntityConfiguration()
-
getPropertyAuditingData
PropertyAuditingData getPropertyAuditingData()
-
getPropertyName
default String getPropertyName()
-
isOneToManyAttached
default boolean isOneToManyAttached()
-
isInverseOneToMany
default boolean isInverseOneToMany()
-
isOwningManyToOneWithBidrectionalJoinTable
default boolean isOwningManyToOneWithBidrectionalJoinTable()
-
isFakeOneToManyBidirectional
default boolean isFakeOneToManyBidirectional()
-
isMiddleTableCollection
default boolean isMiddleTableCollection()
-
isOneToManySingleTableSubclass
default boolean isOneToManySingleTableSubclass()
-
-