Class MultipleIdMapper
java.lang.Object
org.hibernate.envers.internal.entities.mapper.AbstractMapper
org.hibernate.envers.internal.entities.mapper.id.AbstractIdMapper
org.hibernate.envers.internal.entities.mapper.id.AbstractCompositeIdMapper
org.hibernate.envers.internal.entities.mapper.id.MultipleIdMapper
- All Implemented Interfaces:
IdMapper
,SimpleIdMapperBuilder
,SimpleMapperBuilder
-
Field Summary
Fields inherited from class org.hibernate.envers.internal.entities.mapper.id.AbstractCompositeIdMapper
compositeIdClass, ids
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
add
(PropertyData propertyData) boolean
mapToEntityFromMap
(Object obj, Map data) mapToIdFromEntity
(Object data) void
mapToMapFromEntity
(Map<String, Object> data, Object obj) void
mapToMapFromId
(Map<String, Object> data, Object obj) void
prefixMappedProperties
(String prefix) Creates a mapper with all mapped properties prefixed.Methods inherited from class org.hibernate.envers.internal.entities.mapper.id.AbstractCompositeIdMapper
add, instantiateCompositeId, mapToEntityFromEntity, mapToIdFromMap
Methods inherited from class org.hibernate.envers.internal.entities.mapper.id.AbstractIdMapper
addIdEqualsToQuery, addIdsEqualToQuery, addIdsEqualToQuery, addNamedIdEqualsToQuery, addNamedIdEqualsToQuery, addNullableIdsEqualToQuery, getAndSetValue, getServiceRegistry, getValueFromObject, setValueOnObject
Methods inherited from class org.hibernate.envers.internal.entities.mapper.AbstractMapper
doPrivileged, getAndSetValue, getValueFromObject, getValueFromObject, newObjectInstance, setValueOnObject
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.hibernate.envers.internal.entities.mapper.id.IdMapper
addIdEqualsToQuery, addIdsEqualToQuery, addIdsEqualToQuery, addNamedIdEqualsToQuery, addNamedIdEqualsToQuery, addNullableIdsEqualToQuery, getServiceRegistry, mapToIdFromMap
Methods inherited from interface org.hibernate.envers.internal.entities.mapper.id.SimpleIdMapperBuilder
add
-
Constructor Details
-
MultipleIdMapper
-
-
Method Details
-
add
- Specified by:
add
in interfaceSimpleMapperBuilder
- Overrides:
add
in classAbstractCompositeIdMapper
-
mapToMapFromId
- Specified by:
mapToMapFromId
in interfaceIdMapper
-
mapToMapFromId
- Specified by:
mapToMapFromId
in interfaceIdMapper
-
mapToMapFromEntity
- Specified by:
mapToMapFromEntity
in interfaceIdMapper
-
mapToEntityFromMap
- Specified by:
mapToEntityFromMap
in interfaceIdMapper
- Parameters:
obj
- Object to map to.data
- Data to map.- Returns:
- True if data was mapped; false otherwise (when the id is
null
).
-
prefixMappedProperties
Description copied from interface:IdMapper
Creates a mapper with all mapped properties prefixed. A mapped property is a property which is directly mapped to values (not composite).- Specified by:
prefixMappedProperties
in interfaceIdMapper
- Parameters:
prefix
- Prefix to add to mapped properties- Returns:
- A copy of the current property mapper, with mapped properties prefixed.
-
mapToIdFromEntity
- Specified by:
mapToIdFromEntity
in interfaceIdMapper
-
mapToQueryParametersFromId
- Specified by:
mapToQueryParametersFromId
in interfaceIdMapper
- Parameters:
obj
- Id from which to map.- Returns:
- A set parameter data, needed to build a query basing on the given id.
-