public abstract class AbstractCollectionMapper<T> extends java.lang.Object implements PropertyMapper
Modifier and Type | Field and Description |
---|---|
protected java.lang.Class<? extends T> |
collectionClass |
protected CommonCollectionMapperData |
commonCollectionMapperData |
Modifier | Constructor and Description |
---|---|
protected |
AbstractCollectionMapper(CommonCollectionMapperData commonCollectionMapperData,
java.lang.Class<? extends T> collectionClass,
java.lang.Class<? extends T> proxyClass) |
Modifier and Type | Method and Description |
---|---|
protected abstract Initializor<T> |
getInitializor(AuditConfiguration verCfg,
AuditReaderImplementor versionsReader,
java.lang.Object primaryKey,
java.lang.Number revision) |
protected abstract java.util.Collection |
getNewCollectionContent(PersistentCollection newCollection) |
protected abstract java.util.Collection |
getOldCollectionContent(java.io.Serializable oldCollection) |
java.util.List<PersistentCollectionChangeData> |
mapCollectionChanges(java.lang.String referencingPropertyName,
PersistentCollection newColl,
java.io.Serializable oldColl,
java.io.Serializable id)
Maps collection changes
|
void |
mapModifiedFlagsToMapForCollectionChange(java.lang.String collectionPropertyName,
java.util.Map<java.lang.String,java.lang.Object> data) |
void |
mapModifiedFlagsToMapFromEntity(SessionImplementor session,
java.util.Map<java.lang.String,java.lang.Object> data,
java.lang.Object newObj,
java.lang.Object oldObj) |
void |
mapToEntityFromMap(AuditConfiguration verCfg,
java.lang.Object obj,
java.util.Map data,
java.lang.Object primaryKey,
AuditReaderImplementor versionsReader,
java.lang.Number revision)
Maps properties from the given map to the given object.
|
boolean |
mapToMapFromEntity(SessionImplementor session,
java.util.Map<java.lang.String,java.lang.Object> data,
java.lang.Object newObj,
java.lang.Object oldObj)
Maps properties to the given map, basing on differences between properties of new and old objects.
|
protected abstract void |
mapToMapFromObject(java.util.Map<java.lang.String,java.lang.Object> data,
java.lang.Object changed)
Maps the changed collection element to the given map.
|
protected final CommonCollectionMapperData commonCollectionMapperData
protected final java.lang.Class<? extends T> collectionClass
protected AbstractCollectionMapper(CommonCollectionMapperData commonCollectionMapperData, java.lang.Class<? extends T> collectionClass, java.lang.Class<? extends T> proxyClass)
protected abstract java.util.Collection getNewCollectionContent(PersistentCollection newCollection)
protected abstract java.util.Collection getOldCollectionContent(java.io.Serializable oldCollection)
protected abstract void mapToMapFromObject(java.util.Map<java.lang.String,java.lang.Object> data, java.lang.Object changed)
data
- Where to map the data.changed
- The changed collection element to map.public java.util.List<PersistentCollectionChangeData> mapCollectionChanges(java.lang.String referencingPropertyName, PersistentCollection newColl, java.io.Serializable oldColl, java.io.Serializable id)
PropertyMapper
mapCollectionChanges
in interface PropertyMapper
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.public boolean mapToMapFromEntity(SessionImplementor session, java.util.Map<java.lang.String,java.lang.Object> data, java.lang.Object newObj, java.lang.Object oldObj)
PropertyMapper
mapToMapFromEntity
in interface PropertyMapper
session
- The current session.data
- Data to map to.newObj
- New state of the entity.oldObj
- Old state of the entity.public void mapModifiedFlagsToMapFromEntity(SessionImplementor session, java.util.Map<java.lang.String,java.lang.Object> data, java.lang.Object newObj, java.lang.Object oldObj)
mapModifiedFlagsToMapFromEntity
in interface PropertyMapper
public void mapModifiedFlagsToMapForCollectionChange(java.lang.String collectionPropertyName, java.util.Map<java.lang.String,java.lang.Object> data)
mapModifiedFlagsToMapForCollectionChange
in interface PropertyMapper
protected abstract Initializor<T> getInitializor(AuditConfiguration verCfg, AuditReaderImplementor versionsReader, java.lang.Object primaryKey, java.lang.Number revision)
public void mapToEntityFromMap(AuditConfiguration verCfg, java.lang.Object obj, java.util.Map data, java.lang.Object primaryKey, AuditReaderImplementor versionsReader, java.lang.Number revision)
PropertyMapper
mapToEntityFromMap
in interface PropertyMapper
verCfg
- Versions configuration.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 relationsCopyright © 2001-2013 Red Hat, Inc. All Rights Reserved.