Interface SimpleIdMapperBuilder
-
- All Superinterfaces:
IdMapper
,SimpleMapperBuilder
- All Known Implementing Classes:
AbstractCompositeIdMapper
,EmbeddedIdMapper
,MultipleIdMapper
,NestedEmbeddedIdMapper
,SingleIdMapper
,VirtualEntitySingleIdMapper
public interface SimpleIdMapperBuilder extends IdMapper, SimpleMapperBuilder
A simple identifier builder contract.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
add(PropertyData propertyData, AbstractIdMapper idMapper)
Add a custom identifier mapper to the builder.-
Methods inherited from interface org.hibernate.envers.internal.entities.mapper.id.IdMapper
addIdEqualsToQuery, addIdsEqualToQuery, addIdsEqualToQuery, addNamedIdEqualsToQuery, addNamedIdEqualsToQuery, addNullableIdsEqualToQuery, getServiceRegistry, mapToEntityFromMap, mapToIdFromEntity, mapToIdFromMap, mapToMapFromEntity, mapToMapFromId, mapToMapFromId, mapToQueryParametersFromId, prefixMappedProperties
-
Methods inherited from interface org.hibernate.envers.internal.entities.mapper.SimpleMapperBuilder
add
-
-
-
-
Method Detail
-
add
void add(PropertyData propertyData, AbstractIdMapper idMapper)
Add a custom identifier mapper to the builder.- Parameters:
propertyData
- the property dataidMapper
- the mapper
-
-