Class AbstractPropertyMapper
- java.lang.Object
-
- org.hibernate.envers.internal.entities.mapper.AbstractMapper
-
- org.hibernate.envers.internal.entities.mapper.AbstractPropertyMapper
-
- All Implemented Interfaces:
DynamicComponentMapperSupport
,ModifiedFlagMapperSupport
,PropertyMapper
- Direct Known Subclasses:
AbstractCollectionMapper
,AbstractToOneMapper
,ComponentPropertyMapper
,MultiPropertyMapper
,SinglePropertyMapper
,SubclassPropertyMapper
public abstract class AbstractPropertyMapper extends AbstractMapper implements PropertyMapper
Abstract implementation of aPropertyMapper
.
-
-
Constructor Summary
Constructors Constructor Description AbstractPropertyMapper()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
isDynamicComponentMap()
Returns whether the property mapper wraps a dynamic-component.void
markAsDynamicComponentMap()
Mark the property mapper that it wraps a dynamic-component.-
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.ModifiedFlagMapperSupport
hasPropertiesWithModifiedFlag
-
Methods inherited from interface org.hibernate.envers.internal.entities.mapper.PropertyMapper
mapCollectionChanges, mapModifiedFlagsToMapForCollectionChange, mapModifiedFlagsToMapFromEntity, mapToEntityFromMap, mapToEntityFromMap, mapToMapFromEntity
-
-
-
-
Method Detail
-
markAsDynamicComponentMap
public void markAsDynamicComponentMap()
Description copied from interface:DynamicComponentMapperSupport
Mark the property mapper that it wraps a dynamic-component.- Specified by:
markAsDynamicComponentMap
in interfaceDynamicComponentMapperSupport
-
isDynamicComponentMap
public boolean isDynamicComponentMap()
Description copied from interface:DynamicComponentMapperSupport
Returns whether the property mapper wraps a dynamic-component.- Specified by:
isDynamicComponentMap
in interfaceDynamicComponentMapperSupport
-
-