| 
 | EclipseLink 2.2.0, build 'v20110202-r8913' API Reference | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectorg.eclipse.persistence.mappings.DatabaseMapping
org.eclipse.persistence.mappings.AggregateMapping
org.eclipse.persistence.mappings.foundation.AbstractCompositeObjectMapping
public abstract class AbstractCompositeObjectMapping
Chunks of data from non-relational data sources can have an embedded component objects. These can be mapped using this mapping. The format of the embedded data is determined by the reference descriptor.
| Nested Class Summary | 
|---|
| Nested classes/interfaces inherited from class org.eclipse.persistence.mappings.DatabaseMapping | 
|---|
| DatabaseMapping.WriteType | 
| Field Summary | |
|---|---|
| protected  Converter | converterAllows user defined conversion between the object attribute value and the database value. | 
| protected  org.eclipse.persistence.internal.helper.DatabaseField | fieldThe aggregate object is stored in a single field. | 
| Fields inherited from class org.eclipse.persistence.mappings.AggregateMapping | 
|---|
| referenceClass, referenceClassName, referenceDescriptor | 
| Fields inherited from class org.eclipse.persistence.mappings.DatabaseMapping | 
|---|
| attributeAccessor, attributeName, derivedIdMapping, derivesId, descriptor, fields, isCacheable, isJPAId, isLazy, isMapKeyMapping, isOptional, isPrimaryKeyMapping, isReadOnly, isRemotelyInitialized, mapsIdValue, NO_FIELDS, NO_WEIGHT, properties, weight, WEIGHT_AGGREGATE, WEIGHT_DIRECT, WEIGHT_TO_ONE, WEIGHT_TRANSFORM | 
| Constructor Summary | |
|---|---|
| AbstractCompositeObjectMapping()Default constructor. | |
| Method Summary | |
|---|---|
| protected abstract  java.lang.Object | buildCompositeObject(org.eclipse.persistence.internal.descriptors.ObjectBuilder objectBuilder,
                     org.eclipse.persistence.internal.sessions.AbstractRecord nestedRow,
                     ObjectBuildingQuery query,
                     org.eclipse.persistence.internal.identitymaps.CacheKey parentCacheKey,
                     org.eclipse.persistence.internal.queries.JoinedAttributeManager joinManger,
                     org.eclipse.persistence.internal.sessions.AbstractSession targetSession) | 
| protected abstract  java.lang.Object | buildCompositeRow(java.lang.Object attributeValue,
                  org.eclipse.persistence.internal.sessions.AbstractSession session,
                  org.eclipse.persistence.internal.sessions.AbstractRecord record,
                  DatabaseMapping.WriteType writeType) | 
|  void | buildShallowOriginalFromRow(org.eclipse.persistence.internal.sessions.AbstractRecord row,
                            java.lang.Object original,
                            org.eclipse.persistence.internal.queries.JoinedAttributeManager joinManager,
                            ObjectBuildingQuery sourceQuery,
                            org.eclipse.persistence.internal.sessions.AbstractSession executionSession)INTERNAL: Builds a shallow original object. | 
|  void | cascadeDiscoverAndPersistUnregisteredNewObjects(java.lang.Object object,
                                                java.util.Map newObjects,
                                                java.util.Map unregisteredExistingObjects,
                                                java.util.Map visitedObjects,
                                                org.eclipse.persistence.internal.sessions.UnitOfWorkImpl uow)INTERNAL: Cascade discover and persist new objects during commit. | 
|  void | cascadePerformRemoveIfRequired(java.lang.Object object,
                               org.eclipse.persistence.internal.sessions.UnitOfWorkImpl uow,
                               java.util.Map visitedObjects)INTERNAL: Cascade perform delete through mappings that require the cascade | 
|  void | cascadeRegisterNewIfRequired(java.lang.Object object,
                             org.eclipse.persistence.internal.sessions.UnitOfWorkImpl uow,
                             java.util.Map visitedObjects)INTERNAL: Cascade registerNew for Create through mappings that require the cascade | 
| protected  java.util.Vector | collectFields()Return the fields mapped by the mapping. | 
|  void | convertClassNamesToClasses(java.lang.ClassLoader classLoader)INTERNAL: Convert all the class-name-based settings in this mapping to actual class-based settings. | 
|  java.lang.Object | getAttributeValueFromObject(java.lang.Object object)INTERNAL: Return the value of an attribute which this mapping represents for an object. | 
|  Converter | getConverter()PUBLIC: Return the converter on the mapping. | 
|  org.eclipse.persistence.internal.helper.DatabaseField | getField()INTERNAL: The aggregate object is held in a single field. | 
|  boolean | hasConverter()PUBLIC: Indicates if there is a converter on the mapping. | 
|  void | initialize(org.eclipse.persistence.internal.sessions.AbstractSession session)INTERNAL: Initialize the mapping. | 
|  boolean | isAbstractCompositeObjectMapping()INTERNAL: | 
|  void | setAttributeValueInObject(java.lang.Object object,
                          java.lang.Object value)INTERNAL: Set the value of the attribute mapped by this mapping. | 
|  void | setConverter(Converter converter)PUBLIC: Set the converter on the mapping. | 
|  void | setField(org.eclipse.persistence.internal.helper.DatabaseField field)The aggregate object is held in a single field. | 
|  java.lang.Object | valueFromObject(java.lang.Object object,
                org.eclipse.persistence.internal.helper.DatabaseField field,
                org.eclipse.persistence.internal.sessions.AbstractSession session)INTERNAL: Extract and return value of the field from the object | 
|  java.lang.Object | valueFromRow(org.eclipse.persistence.internal.sessions.AbstractRecord row,
             org.eclipse.persistence.internal.queries.JoinedAttributeManager joinManager,
             ObjectBuildingQuery sourceQuery,
             org.eclipse.persistence.internal.identitymaps.CacheKey cacheKey,
             org.eclipse.persistence.internal.sessions.AbstractSession executionSession,
             boolean isTargetProtected)INTERNAL: Extract and return the aggregate object from the specified row. | 
|  void | writeFromObjectIntoRow(java.lang.Object object,
                       org.eclipse.persistence.internal.sessions.AbstractRecord record,
                       org.eclipse.persistence.internal.sessions.AbstractSession session,
                       DatabaseMapping.WriteType writeType)INTERNAL: Build the value for the database field and put it in the specified database row. | 
|  void | writeFromObjectIntoRowForUpdate(WriteObjectQuery query,
                                org.eclipse.persistence.internal.sessions.AbstractRecord row)INTERNAL: If it has changed, build the value for the database field and put it in the specified database row. | 
|  void | writeFromObjectIntoRowWithChangeRecord(org.eclipse.persistence.internal.sessions.ChangeRecord changeRecord,
                                       org.eclipse.persistence.internal.sessions.AbstractRecord row,
                                       org.eclipse.persistence.internal.sessions.AbstractSession session,
                                       DatabaseMapping.WriteType writeType)INTERNAL: Get the attribute value from the object and add the appropriate values to the specified database row. | 
|  void | writeInsertFieldsIntoRow(org.eclipse.persistence.internal.sessions.AbstractRecord record,
                         org.eclipse.persistence.internal.sessions.AbstractSession session)INTERNAL: Write fields needed for insert into the template for with null values. | 
| Methods inherited from class java.lang.Object | 
|---|
| equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait | 
| Field Detail | 
|---|
protected org.eclipse.persistence.internal.helper.DatabaseField field
protected Converter converter
| Constructor Detail | 
|---|
public AbstractCompositeObjectMapping()
| Method Detail | 
|---|
public void cascadePerformRemoveIfRequired(java.lang.Object object,
                                           org.eclipse.persistence.internal.sessions.UnitOfWorkImpl uow,
                                           java.util.Map visitedObjects)
cascadePerformRemoveIfRequired in class DatabaseMapping
public void cascadeDiscoverAndPersistUnregisteredNewObjects(java.lang.Object object,
                                                            java.util.Map newObjects,
                                                            java.util.Map unregisteredExistingObjects,
                                                            java.util.Map visitedObjects,
                                                            org.eclipse.persistence.internal.sessions.UnitOfWorkImpl uow)
cascadeDiscoverAndPersistUnregisteredNewObjects in class DatabaseMapping
public void cascadeRegisterNewIfRequired(java.lang.Object object,
                                         org.eclipse.persistence.internal.sessions.UnitOfWorkImpl uow,
                                         java.util.Map visitedObjects)
cascadeRegisterNewIfRequired in class DatabaseMappingprotected java.util.Vector collectFields()
collectFields in class DatabaseMapping
public java.lang.Object getAttributeValueFromObject(java.lang.Object object)
                                             throws DescriptorException
getAttributeValueFromObject in class DatabaseMappingDescriptorExceptionpublic Converter getConverter()
public org.eclipse.persistence.internal.helper.DatabaseField getField()
getField in class DatabaseMappingpublic boolean hasConverter()
public boolean isAbstractCompositeObjectMapping()
isAbstractCompositeObjectMapping in class DatabaseMapping
public void initialize(org.eclipse.persistence.internal.sessions.AbstractSession session)
                throws DescriptorException
initialize in class AggregateMappingDescriptorException
public void setAttributeValueInObject(java.lang.Object object,
                                      java.lang.Object value)
                               throws DescriptorException
setAttributeValueInObject in class DatabaseMappingDescriptorExceptionpublic void setConverter(Converter converter)
public void setField(org.eclipse.persistence.internal.helper.DatabaseField field)
public java.lang.Object valueFromObject(java.lang.Object object,
                                        org.eclipse.persistence.internal.helper.DatabaseField field,
                                        org.eclipse.persistence.internal.sessions.AbstractSession session)
                                 throws DescriptorException
valueFromObject in class DatabaseMappingDescriptorException
public java.lang.Object valueFromRow(org.eclipse.persistence.internal.sessions.AbstractRecord row,
                                     org.eclipse.persistence.internal.queries.JoinedAttributeManager joinManager,
                                     ObjectBuildingQuery sourceQuery,
                                     org.eclipse.persistence.internal.identitymaps.CacheKey cacheKey,
                                     org.eclipse.persistence.internal.sessions.AbstractSession executionSession,
                                     boolean isTargetProtected)
                              throws DatabaseException
valueFromRow in class DatabaseMappingDatabaseException
public void buildShallowOriginalFromRow(org.eclipse.persistence.internal.sessions.AbstractRecord row,
                                        java.lang.Object original,
                                        org.eclipse.persistence.internal.queries.JoinedAttributeManager joinManager,
                                        ObjectBuildingQuery sourceQuery,
                                        org.eclipse.persistence.internal.sessions.AbstractSession executionSession)
buildShallowOriginalFromRow in class DatabaseMapping
protected abstract java.lang.Object buildCompositeObject(org.eclipse.persistence.internal.descriptors.ObjectBuilder objectBuilder,
                                                         org.eclipse.persistence.internal.sessions.AbstractRecord nestedRow,
                                                         ObjectBuildingQuery query,
                                                         org.eclipse.persistence.internal.identitymaps.CacheKey parentCacheKey,
                                                         org.eclipse.persistence.internal.queries.JoinedAttributeManager joinManger,
                                                         org.eclipse.persistence.internal.sessions.AbstractSession targetSession)
public void writeFromObjectIntoRow(java.lang.Object object,
                                   org.eclipse.persistence.internal.sessions.AbstractRecord record,
                                   org.eclipse.persistence.internal.sessions.AbstractSession session,
                                   DatabaseMapping.WriteType writeType)
                            throws DescriptorException
writeFromObjectIntoRow in class DatabaseMappingDescriptorException
protected abstract java.lang.Object buildCompositeRow(java.lang.Object attributeValue,
                                                      org.eclipse.persistence.internal.sessions.AbstractSession session,
                                                      org.eclipse.persistence.internal.sessions.AbstractRecord record,
                                                      DatabaseMapping.WriteType writeType)
public void writeFromObjectIntoRowForUpdate(WriteObjectQuery query,
                                            org.eclipse.persistence.internal.sessions.AbstractRecord row)
                                     throws DescriptorException
writeFromObjectIntoRowForUpdate in class DatabaseMappingDescriptorException
public void writeFromObjectIntoRowWithChangeRecord(org.eclipse.persistence.internal.sessions.ChangeRecord changeRecord,
                                                   org.eclipse.persistence.internal.sessions.AbstractRecord row,
                                                   org.eclipse.persistence.internal.sessions.AbstractSession session,
                                                   DatabaseMapping.WriteType writeType)
                                            throws DescriptorException
writeFromObjectIntoRowWithChangeRecord in class DatabaseMappingDescriptorException
public void writeInsertFieldsIntoRow(org.eclipse.persistence.internal.sessions.AbstractRecord record,
                                     org.eclipse.persistence.internal.sessions.AbstractSession session)
writeInsertFieldsIntoRow in class DatabaseMappingpublic void convertClassNamesToClasses(java.lang.ClassLoader classLoader)
convertClassNamesToClasses in class AggregateMappingclassLoader - | 
 | EclipseLink 2.2.0, build 'v20110202-r8913' API Reference | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||