Class AbstractToOneMapper
java.lang.Object
org.hibernate.envers.internal.entities.mapper.AbstractMapper
org.hibernate.envers.internal.entities.mapper.AbstractPropertyMapper
org.hibernate.envers.internal.entities.mapper.relation.AbstractToOneMapper
- All Implemented Interfaces:
DynamicComponentMapperSupport,ModifiedFlagMapperSupport,PropertyMapper
- Direct Known Subclasses:
AbstractOneToOneMapper,ToOneIdMapper
Base class for property mappers that manage to-one relation.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionprotected static classSimple descriptor of an entity. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedAbstractToOneMapper(ServiceRegistry serviceRegistry, PropertyData propertyData) -
Method Summary
Modifier and TypeMethodDescriptionprotected AbstractToOneMapper.EntityInfogetEntityInfo(EnversService enversService, String entityName) protected PropertyDatabooleanReturns whether the associatedPropertyMapperhas any properties that use thewitModifiedFlagfeature.mapCollectionChanges(SessionImplementor session, String referencingPropertyName, PersistentCollection newColl, Serializable oldColl, Object id) Maps collection changes.voidmapToEntityFromMap(EnversService enversService, Object obj, Map data, Object primaryKey, AuditReaderImplementor versionsReader, Number revision) Maps properties from the given map to the given object.mapToEntityFromMap(EnversService enversService, Map data, Object primaryKey, AuditReaderImplementor versionsReader, Number revision) booleanmapToMapFromEntity(SessionImplementor session, Map<String, Object> data, Object newObj, Object oldObj) Maps properties to the given map, basing on differences between properties of new and old objects.abstract voidnullSafeMapToEntityFromMap(EnversService enversService, Object obj, Map data, Object primaryKey, AuditReaderImplementor versionsReader, Number revision) Parameterobjis nevernull.abstract ObjectnullSafeMapToEntityFromMap(EnversService enversService, Map data, Object primaryKey, AuditReaderImplementor versionsReader, Number revision) protected voidsetPropertyValue(Object targetObject, Object value) Methods inherited from class org.hibernate.envers.internal.entities.mapper.AbstractPropertyMapper
isDynamicComponentMap, markAsDynamicComponentMapMethods inherited from class org.hibernate.envers.internal.entities.mapper.AbstractMapper
getAndSetValue, getValueFromObject, getValueFromObject, newObjectInstance, setValueOnObjectMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.hibernate.envers.internal.entities.mapper.PropertyMapper
mapModifiedFlagsToMapForCollectionChange, mapModifiedFlagsToMapFromEntity
-
Constructor Details
-
AbstractToOneMapper
-
-
Method Details
-
mapToMapFromEntity
public boolean mapToMapFromEntity(SessionImplementor session, Map<String, Object> data, Object newObj, Object oldObj) Description copied from interface:PropertyMapperMaps properties to the given map, basing on differences between properties of new and old objects.- Parameters:
session- The current session.data- Data to map to.newObj- New state of the entity.oldObj- Old state of the entity.- Returns:
- True if there are any differences between the states represented by newObj and oldObj.
-
mapToEntityFromMap
public void mapToEntityFromMap(EnversService enversService, Object obj, Map data, Object primaryKey, AuditReaderImplementor versionsReader, Number revision) Description copied from interface:PropertyMapperMaps properties from the given map to the given object.- Parameters:
enversService- The EnversService.obj- Object to map to.data- Data to map from.primaryKey- Primary key of the object to which we map (for relations)versionsReader- VersionsReader for reading relationsrevision- Revision at which the object is read, for reading relations
-
mapToEntityFromMap
public Object mapToEntityFromMap(EnversService enversService, Map data, Object primaryKey, AuditReaderImplementor versionsReader, Number revision) -
mapCollectionChanges
public List<PersistentCollectionChangeData> mapCollectionChanges(SessionImplementor session, String referencingPropertyName, PersistentCollection newColl, Serializable oldColl, Object id) Description copied from interface:PropertyMapperMaps collection changes.- Parameters:
session- The current session.referencingPropertyName- Name of the field, which holds the collection in the entity.newColl- New collection, after updates.oldColl- Old collection, before updates.id- Id of the object owning the collection.- Returns:
- List of changes that need to be performed on the persistent store.
-
getEntityInfo
protected AbstractToOneMapper.EntityInfo getEntityInfo(EnversService enversService, String entityName) - Parameters:
enversService- The EnversServiceentityName- Entity name.- Returns:
- Entity class, name and information whether it is audited or not.
-
setPropertyValue
-
getPropertyData
- Returns:
- Bean property that represents the relation.
-
nullSafeMapToEntityFromMap
public abstract void nullSafeMapToEntityFromMap(EnversService enversService, Object obj, Map data, Object primaryKey, AuditReaderImplementor versionsReader, Number revision) Parameterobjis nevernull. -
nullSafeMapToEntityFromMap
public abstract Object nullSafeMapToEntityFromMap(EnversService enversService, Map data, Object primaryKey, AuditReaderImplementor versionsReader, Number revision) -
hasPropertiesWithModifiedFlag
public boolean hasPropertiesWithModifiedFlag()Description copied from interface:ModifiedFlagMapperSupportReturns whether the associatedPropertyMapperhas any properties that use thewitModifiedFlagfeature.- Returns:
trueif a property useswithModifiedFlag, otherwisefalse.
-