Uses of Interface
org.hibernate.envers.internal.entities.mapper.id.IdMapper
Packages that use IdMapper
Package
Description
-
Uses of IdMapper in org.hibernate.envers.internal.entities
Methods in org.hibernate.envers.internal.entities that return IdMapperModifier and TypeMethodDescriptionEntityConfiguration.getIdMapper()
IdMappingData.getIdMapper()
RelationDescription.getIdMapper()
Methods in org.hibernate.envers.internal.entities with parameters of type IdMapperModifier and TypeMethodDescriptionvoid
EntityConfiguration.addToManyNotOwningRelation
(String fromPropertyName, String mappedByPropertyName, String toEntityName, IdMapper idMapper, PropertyMapper fakeBidirectionalRelationMapper, PropertyMapper fakeBidirectionalRelationIndexMapper, boolean indexed) void
EntityConfiguration.addToOneNotOwningRelation
(String fromPropertyName, String mappedByPropertyName, String toEntityName, IdMapper idMapper, boolean ignoreNotFound) void
EntityConfiguration.addToOneRelation
(String fromPropertyName, String toEntityName, IdMapper idMapper, boolean insertable, boolean ignoreNotFound) static RelationDescription
RelationDescription.toMany
(String fromPropertyName, RelationType relationType, String toEntityName, String mappedByPropertyName, IdMapper idMapper, PropertyMapper fakeBidirectionalRelationMapper, PropertyMapper fakeBidirectionalRelationIndexMapper, MiddleIdData referencingIdData, MiddleIdData referencedIdData, String auditMiddleEntityName, boolean insertable, boolean indexed) static RelationDescription
RelationDescription.toOne
(String fromPropertyName, RelationType relationType, String toEntityName, String mappedByPropertyName, IdMapper idMapper, PropertyMapper fakeBidirectionalRelationMapper, PropertyMapper fakeBidirectionalRelationIndexMapper, boolean insertable, boolean ignoreNotFound) Constructors in org.hibernate.envers.internal.entities with parameters of type IdMapperModifierConstructorDescriptionIdMappingData
(IdMapper mapper, Identifier identifier, IdentifierRelation relation) -
Uses of IdMapper in org.hibernate.envers.internal.entities.mapper.id
Subinterfaces of IdMapper in org.hibernate.envers.internal.entities.mapper.idModifier and TypeInterfaceDescriptioninterface
A simple identifier builder contract.Classes in org.hibernate.envers.internal.entities.mapper.id that implement IdMapperModifier and TypeClassDescriptionclass
An abstract identifier mapper implementation specific for composite identifiers.class
The base abstract class implementation for identifier mappers.class
An identifier mapper implementation forEmbeddedId
mappings.class
class
An identifier mapper that is meant to support nestedEmbeddable
instances inside an existingEmbeddedId
identifier hierarchy.class
An implementation of an identifier mapper for a single basic attribute property.class
An extension to theSingleIdMapper
implementation that supports the use case of an@IdClass
mapping that contains an entity association where the@IdClass
stores the primary key of the associated entity rather than the entity object itself.Methods in org.hibernate.envers.internal.entities.mapper.id that return IdMapperModifier and TypeMethodDescriptionEmbeddedIdMapper.prefixMappedProperties
(String prefix) IdMapper.prefixMappedProperties
(String prefix) Creates a mapper with all mapped properties prefixed.MultipleIdMapper.prefixMappedProperties
(String prefix) SingleIdMapper.prefixMappedProperties
(String prefix) Methods in org.hibernate.envers.internal.entities.mapper.id with parameters of type IdMapperModifier and TypeMethodDescriptionvoid
AbstractIdMapper.addIdsEqualToQuery
(Parameters parameters, String prefix1, IdMapper mapper2, String prefix2) void
IdMapper.addIdsEqualToQuery
(Parameters parameters, String prefix1, IdMapper mapper2, String prefix2) Adds query statements, which contains restrictions, which express the property that the id of the entity with alias prefix1, is equal to the id of the entity with alias prefix2 mapped by the second mapper (the second mapper must be for the same entity, but it can have, for example, prefixed properties).void
AbstractIdMapper.addNamedIdEqualsToQuery
(Parameters parameters, String prefix1, IdMapper mapper, boolean equals) void
IdMapper.addNamedIdEqualsToQuery
(Parameters parameters, String prefix, IdMapper mapper, boolean equals) Adds query statements, which contains named parameters that express the property that the id of the entity with alias prefix is equal to the given object using the specified mapper.void
AbstractIdMapper.addNullableIdsEqualToQuery
(Parameters parameters, String prefix1, IdMapper mapper2, String prefix2) void
IdMapper.addNullableIdsEqualToQuery
(Parameters parameters, String prefix1, IdMapper mapper2, String prefix2) Adds query statements, which contains restrictions, which express the property that the id of the entity with alias prefix1, is equal to the id of the entity with alias prefix2 mapped by the second mapper (the second mapper must be for the same entity, but it can have, for example, prefixed properties). -
Uses of IdMapper in org.hibernate.envers.internal.entities.mapper.relation
Methods in org.hibernate.envers.internal.entities.mapper.relation that return IdMapperModifier and TypeMethodDescriptionMiddleIdData.getOriginalMapper()
MiddleIdData.getPrefixedMapper()
Constructors in org.hibernate.envers.internal.entities.mapper.relation with parameters of type IdMapperModifierConstructorDescriptionToOneIdMapper
(IdMapper delegate, PropertyData propertyData, String referencedEntityName, boolean nonInsertableFake, boolean lazyMapping) -
Uses of IdMapper in org.hibernate.envers.internal.entities.mapper.relation.component
Constructors in org.hibernate.envers.internal.entities.mapper.relation.component with parameters of type IdMapperModifierConstructorDescriptionMiddleMapKeyIdComponentMapper
(Configuration configuration, IdMapper relatedIdMapper)