|
|||||||||
| 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.ForeignReferenceMapping
org.eclipse.persistence.mappings.CollectionMapping
org.eclipse.persistence.mappings.AggregateCollectionMapping
public class AggregateCollectionMapping
Purpose: The aggregate collection mapping is used to represent the aggregate relationship between a single source object and a collection of target objects. The target objects cannot exist without the existence of the source object (privately owned) Unlike the normal aggregate mapping, there is a target table being mapped from the target objects. Unlike normal 1:m mapping, there is no 1:1 back reference mapping, as foreign key constraints have been resolved by the aggregation.
| Nested Class Summary |
|---|
| Nested classes/interfaces inherited from class org.eclipse.persistence.mappings.DatabaseMapping |
|---|
DatabaseMapping.WriteType |
| Field Summary |
|---|
| Fields inherited from class org.eclipse.persistence.mappings.ForeignReferenceMapping |
|---|
INNER_JOIN, NONE, OUTER_JOIN, QUERY_BATCH_PARAMETER |
| Constructor Summary | |
|---|---|
AggregateCollectionMapping()
PUBLIC: Default constructor. |
|
| Method Summary | |
|---|---|
void |
addFieldNameTranslation(String sourceFieldName,
String aggregateFieldName)
PUBLIC: Maps a field name in the aggregate descriptor to a field name in the source table. |
void |
addFieldNameTranslations(Map<String,String> map)
PUBLIC: Maps a field name in the aggregate descriptor to a field name in the source table. |
void |
addNestedFieldNameTranslation(String attributeName,
String sourceFieldName,
String aggregateFieldName)
PUBLIC: Map the name of an attribute of the reference descriptor mapped with AggregateCollectionMapping to aggregateToSourceFieldNames that should be applied to this mapping. |
void |
addNestedFieldNameTranslations(String attributeName,
Map<String,String> map)
PUBLIC: Map the name of an attribute of the reference descriptor mapped with AggregateCollectionMapping to aggregateToSourceFieldNames that should be applied to this mapping. |
void |
addOverrideManyToManyMapping(ManyToManyMapping mapping)
INTERNAL: In JPA users may specify overrides to apply to a many to many mapping on a shared embeddable descriptor. |
void |
addOverrideUnidirectionalOneToManyMapping(UnidirectionalOneToManyMapping mapping)
INTERNAL: In JPA users may specify overrides to apply to a unidirectional one to many mapping on a shared embeddable descriptor. |
void |
addTargetForeignKeyField(org.eclipse.persistence.internal.helper.DatabaseField targetForeignKey,
org.eclipse.persistence.internal.helper.DatabaseField sourceKey)
PUBLIC: Define the target foreign key relationship in the 1-M aggregate collection mapping. |
void |
addTargetForeignKeyFieldName(String targetForeignKey,
String sourceKey)
PUBLIC: Define the target foreign key relationship in the 1-M aggregate collection mapping. |
Object |
buildBackupCloneForPartObject(Object attributeValue,
Object clone,
Object backup,
org.eclipse.persistence.internal.sessions.UnitOfWorkImpl unitOfWork)
INTERNAL: Used during building the backup shallow copy to copy the vector without re-registering the target objects. |
Object |
buildCloneForPartObject(Object attributeValue,
Object original,
Object clone,
org.eclipse.persistence.internal.sessions.UnitOfWorkImpl unitOfWork,
boolean isExisting)
INTERNAL: Require for cloning, the part must be cloned. |
Object |
buildElementClone(Object element,
Object parent,
org.eclipse.persistence.internal.sessions.UnitOfWorkImpl unitOfWork,
boolean isExisting)
INTERNAL: Clone the aggregate collection, if necessary. |
void |
cascadeDiscoverAndPersistUnregisteredNewObjects(Object object,
Map newObjects,
Map unregisteredExistingObjects,
Map visitedObjects,
org.eclipse.persistence.internal.sessions.UnitOfWorkImpl uow)
INTERNAL: Cascade discover and persist new objects during commit. |
void |
cascadePerformRemoveIfRequired(Object object,
org.eclipse.persistence.internal.sessions.UnitOfWorkImpl uow,
Map visitedObjects)
INTERNAL: Cascade registerNew for Create through mappings that require the cascade |
void |
cascadePerformRemovePrivateOwnedObjectFromChangeSetIfRequired(Object object,
org.eclipse.persistence.internal.sessions.UnitOfWorkImpl uow,
Map visitedObjects)
INTERNAL: Cascade perform removal of orphaned private owned objects from the UnitOfWorkChangeSet |
void |
cascadeRegisterNewIfRequired(Object object,
org.eclipse.persistence.internal.sessions.UnitOfWorkImpl uow,
Map visitedObjects)
INTERNAL: Cascade registerNew for Create through mappings that require the cascade |
Object |
clone()
INTERNAL: The mapping clones itself to create deep copy. |
org.eclipse.persistence.internal.sessions.ChangeRecord |
compareForChange(Object clone,
Object backUp,
org.eclipse.persistence.internal.sessions.ObjectChangeSet owner,
org.eclipse.persistence.internal.sessions.AbstractSession session)
INTERNAL: This method is used to create a change record from comparing two aggregate collections |
boolean |
compareLists(List firstList,
List secondList,
org.eclipse.persistence.internal.sessions.AbstractSession session)
INTERNAL: Compare the attributes belonging to this mapping for the objects. |
boolean |
compareObjects(Object firstObject,
Object secondObject,
org.eclipse.persistence.internal.sessions.AbstractSession session)
INTERNAL: Compare the attributes belonging to this mapping for the objects. |
Object |
createMapComponentFromRow(org.eclipse.persistence.internal.sessions.AbstractRecord dbRow,
ObjectBuildingQuery query,
org.eclipse.persistence.internal.sessions.AbstractSession session)
INTERNAL Called when a DatabaseMapping is used to map the key in a collection. |
org.eclipse.persistence.internal.sessions.AbstractRecord |
getAggregateRow(ObjectLevelModifyQuery query,
Object object)
INTERNAL: return the aggregate Record with the primary keys from the source table and target table |
InsertObjectQuery |
getAndPrepareModifyQueryForInsert(ObjectLevelModifyQuery originalQuery,
Object object)
INTERNAL: setup the modifyQuery for post insert/update and pre delete |
ClassDescriptor |
getReferenceDescriptor()
INTERNAL: Return the referenceDescriptor. |
ClassDescriptor |
getReferenceDescriptor(Class theClass,
org.eclipse.persistence.internal.sessions.AbstractSession session)
INTERNAL: for inheritance purpose |
Vector |
getReferenceObjectKeys(ObjectLevelModifyQuery query)
INTERNAL: get reference object keys |
Vector |
getSourceKeyFieldNames()
PUBLIC: Return the source key field names associated with the mapping. |
Vector<org.eclipse.persistence.internal.helper.DatabaseField> |
getSourceKeyFields()
INTERNAL: Return the source key names associated with the mapping |
Vector |
getTargetForeignKeyFieldNames()
PUBLIC: Return the target foregin key field names associated with the mapping. |
Vector<org.eclipse.persistence.internal.helper.DatabaseField> |
getTargetForeignKeyFields()
INTERNAL: Return the target foregin key fields associated with the mapping |
Map<org.eclipse.persistence.internal.helper.DatabaseField,org.eclipse.persistence.internal.helper.DatabaseField> |
getTargetForeignKeyToSourceKeys()
INTERNAL: |
void |
initialize(org.eclipse.persistence.internal.sessions.AbstractSession session)
INTERNAL: For aggregate collection mapping the reference descriptor is cloned. |
void |
initializeChildInheritance(ClassDescriptor parentDescriptor,
org.eclipse.persistence.internal.sessions.AbstractSession session,
HashMap<org.eclipse.persistence.internal.helper.DatabaseField,org.eclipse.persistence.internal.helper.DatabaseField> fieldTranslation,
HashMap<org.eclipse.persistence.internal.helper.DatabaseTable,org.eclipse.persistence.internal.helper.DatabaseTable> tableTranslation)
INTERNAL: For aggregate mapping the reference descriptor is cloned. |
void |
initializeParentInheritance(ClassDescriptor parentDescriptor,
ClassDescriptor childDescriptor,
org.eclipse.persistence.internal.sessions.AbstractSession session,
HashMap<org.eclipse.persistence.internal.helper.DatabaseField,org.eclipse.persistence.internal.helper.DatabaseField> fieldTranslation,
HashMap<org.eclipse.persistence.internal.helper.DatabaseTable,org.eclipse.persistence.internal.helper.DatabaseTable> tableTranslation)
INTERNAL: For aggregate mapping the reference descriptor is cloned. |
boolean |
isAggregateCollectionMapping()
INTERNAL: |
boolean |
isCandidateForPrivateOwnedRemoval()
INTERNAL: AggregateCollection contents should not be considered for addition to the UnitOfWork private owned objects list for removal. |
boolean |
isCascadedLockingSupported()
INTERNAL Return true if this mapping supports cascaded version optimistic locking. |
boolean |
isChangeTrackingSupported(Project project)
INTERNAL: Return if this mapping supports change tracking. |
boolean |
isJoiningSupported()
INTERNAL: Return if this mapping support joining. |
boolean |
isListOrderFieldUpdatable()
PUBLIC: indicates whether listOrderField value could be updated in the db. |
boolean |
isOwned()
INTERNAL: |
boolean |
isPrivateOwned()
INTERNAL: |
boolean |
isRelationalMapping()
INTERNAL: |
void |
iterateOnElement(org.eclipse.persistence.internal.descriptors.DescriptorIterator iterator,
Object element)
INTERNAL: Iterate on the specified element. |
void |
mergeChangesIntoObject(Object target,
org.eclipse.persistence.internal.sessions.ChangeRecord changeRecord,
Object source,
org.eclipse.persistence.internal.sessions.MergeManager mergeManager)
INTERNAL: Merge changes from the source to the target object. |
void |
mergeIntoObject(Object target,
boolean isTargetUnInitialized,
Object source,
org.eclipse.persistence.internal.sessions.MergeManager mergeManager)
INTERNAL: Merge changes from the source to the target object. |
void |
postInitialize(org.eclipse.persistence.internal.sessions.AbstractSession session)
INTERNAL: For aggregate collection mapping the reference descriptor is cloned. |
void |
postInsert(WriteObjectQuery query)
INTERNAL: Insert privately owned parts |
void |
postUpdate(WriteObjectQuery writeQuery)
INTERNAL: Update the privately owned parts |
void |
preDelete(DeleteObjectQuery query)
INTERNAL: Delete privately owned parts |
void |
preInsert(WriteObjectQuery query)
INTERNAL: The message is passed to its reference class descriptor. |
void |
prepareModifyQueryForDelete(ObjectLevelModifyQuery originalQuery,
ObjectLevelModifyQuery modifyQuery,
Object wrappedObject,
Map extraData)
INTERNAL: setup the modifyQuery for pre delete |
void |
prepareModifyQueryForUpdate(ObjectLevelModifyQuery originalQuery,
ObjectLevelModifyQuery modifyQuery,
Object object)
INTERNAL: setup the modifyQuery for update, |
ObjectLevelReadQuery |
prepareNestedJoins(org.eclipse.persistence.internal.queries.JoinedAttributeManager joinManager,
ObjectBuildingQuery baseQuery,
org.eclipse.persistence.internal.sessions.AbstractSession session)
INTERNAL: Clone and prepare the JoinedAttributeManager nested JoinedAttributeManager. |
void |
remoteInitialization(DistributedSession session)
INTERNAL: Once a descriptor is serialized to the remote session, all its mappings and reference descriptors are traversed. |
void |
setIsListOrderFieldUpdatable(boolean isUpdatable)
PUBLIC: indicates whether listOrderField value could be updated in the db. |
void |
setSourceKeyFieldNames(Vector fieldNames)
PUBLIC: Set the source key field names associated with the mapping. |
void |
setSourceKeyFields(Vector<org.eclipse.persistence.internal.helper.DatabaseField> sourceKeyFields)
INTERNAL: set all the primary key names associated with this mapping |
void |
setTargetForeignKeyFieldNames(Vector fieldNames)
PUBLIC: Set the target foregin key field names associated with the mapping. |
void |
setTargetForeignKeyFields(Vector<org.eclipse.persistence.internal.helper.DatabaseField> targetForeignKeyFields)
INTERNAL: set the target foregin key fields associated with the mapping |
void |
simpleAddToCollectionChangeRecord(Object referenceKey,
Object changeSetToAdd,
org.eclipse.persistence.internal.sessions.ObjectChangeSet changeSet,
org.eclipse.persistence.internal.sessions.AbstractSession session)
ADVANCED: This method is used to have an object add to a collection once the changeSet is applied The referenceKey parameter should only be used for direct Maps. |
void |
simpleRemoveFromCollectionChangeRecord(Object referenceKey,
Object changeSetToRemove,
org.eclipse.persistence.internal.sessions.ObjectChangeSet changeSet,
org.eclipse.persistence.internal.sessions.AbstractSession session)
ADVANCED: This method is used to have an object removed from a collection once the changeSet is applied The referenceKey parameter should only be used for direct Maps. |
Object |
valueFromRow(org.eclipse.persistence.internal.sessions.AbstractRecord row,
org.eclipse.persistence.internal.queries.JoinedAttributeManager joinManager,
ObjectBuildingQuery sourceQuery,
org.eclipse.persistence.internal.sessions.AbstractSession executionSession)
INTERNAL: Retrieves a value from the row for a particular query key |
boolean |
verifyDelete(Object object,
org.eclipse.persistence.internal.sessions.AbstractSession session)
INTERNAL: Checks if object is deleted from the database or not. |
| Methods inherited from class java.lang.Object |
|---|
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Methods inherited from interface org.eclipse.persistence.mappings.EmbeddableMapping |
|---|
getAttributeName |
| Constructor Detail |
|---|
public AggregateCollectionMapping()
| Method Detail |
|---|
public boolean isRelationalMapping()
isRelationalMapping in class DatabaseMappingpublic void addOverrideManyToManyMapping(ManyToManyMapping mapping)
addOverrideManyToManyMapping in interface EmbeddableMappingpublic void addOverrideUnidirectionalOneToManyMapping(UnidirectionalOneToManyMapping mapping)
addOverrideUnidirectionalOneToManyMapping in interface EmbeddableMapping
public void addFieldNameTranslation(String sourceFieldName,
String aggregateFieldName)
addFieldNameTranslation in interface EmbeddableMappingpublic void addFieldNameTranslations(Map<String,String> map)
public void addNestedFieldNameTranslation(String attributeName,
String sourceFieldName,
String aggregateFieldName)
addNestedFieldNameTranslation in interface EmbeddableMapping
public void addNestedFieldNameTranslations(String attributeName,
Map<String,String> map)
public void addTargetForeignKeyField(org.eclipse.persistence.internal.helper.DatabaseField targetForeignKey,
org.eclipse.persistence.internal.helper.DatabaseField sourceKey)
public void addTargetForeignKeyFieldName(String targetForeignKey,
String sourceKey)
public Object buildBackupCloneForPartObject(Object attributeValue,
Object clone,
Object backup,
org.eclipse.persistence.internal.sessions.UnitOfWorkImpl unitOfWork)
buildBackupCloneForPartObject in class CollectionMapping
public Object buildCloneForPartObject(Object attributeValue,
Object original,
Object clone,
org.eclipse.persistence.internal.sessions.UnitOfWorkImpl unitOfWork,
boolean isExisting)
buildCloneForPartObject in class CollectionMapping
public Object buildElementClone(Object element,
Object parent,
org.eclipse.persistence.internal.sessions.UnitOfWorkImpl unitOfWork,
boolean isExisting)
buildElementClone in class CollectionMapping
public void cascadeDiscoverAndPersistUnregisteredNewObjects(Object object,
Map newObjects,
Map unregisteredExistingObjects,
Map visitedObjects,
org.eclipse.persistence.internal.sessions.UnitOfWorkImpl uow)
cascadeDiscoverAndPersistUnregisteredNewObjects in class CollectionMapping
public void cascadeRegisterNewIfRequired(Object object,
org.eclipse.persistence.internal.sessions.UnitOfWorkImpl uow,
Map visitedObjects)
cascadeRegisterNewIfRequired in class CollectionMapping
public void cascadePerformRemoveIfRequired(Object object,
org.eclipse.persistence.internal.sessions.UnitOfWorkImpl uow,
Map visitedObjects)
cascadePerformRemoveIfRequired in class CollectionMapping
public void cascadePerformRemovePrivateOwnedObjectFromChangeSetIfRequired(Object object,
org.eclipse.persistence.internal.sessions.UnitOfWorkImpl uow,
Map visitedObjects)
cascadePerformRemovePrivateOwnedObjectFromChangeSetIfRequired in class CollectionMappingpublic Object clone()
clone in class CollectionMapping
public org.eclipse.persistence.internal.sessions.ChangeRecord compareForChange(Object clone,
Object backUp,
org.eclipse.persistence.internal.sessions.ObjectChangeSet owner,
org.eclipse.persistence.internal.sessions.AbstractSession session)
compareForChange in class CollectionMapping
public boolean compareObjects(Object firstObject,
Object secondObject,
org.eclipse.persistence.internal.sessions.AbstractSession session)
compareObjects in class CollectionMapping
public boolean compareLists(List firstList,
List secondList,
org.eclipse.persistence.internal.sessions.AbstractSession session)
public Object createMapComponentFromRow(org.eclipse.persistence.internal.sessions.AbstractRecord dbRow,
ObjectBuildingQuery query,
org.eclipse.persistence.internal.sessions.AbstractSession session)
createMapComponentFromRow in interface MapComponentMapping
public org.eclipse.persistence.internal.sessions.AbstractRecord getAggregateRow(ObjectLevelModifyQuery query,
Object object)
public ClassDescriptor getReferenceDescriptor()
getReferenceDescriptor in class ForeignReferenceMapping
public ClassDescriptor getReferenceDescriptor(Class theClass,
org.eclipse.persistence.internal.sessions.AbstractSession session)
public Vector getReferenceObjectKeys(ObjectLevelModifyQuery query)
throws DatabaseException,
OptimisticLockException
DatabaseException
OptimisticLockExceptionpublic Vector getSourceKeyFieldNames()
public Vector<org.eclipse.persistence.internal.helper.DatabaseField> getSourceKeyFields()
public Vector getTargetForeignKeyFieldNames()
public Vector<org.eclipse.persistence.internal.helper.DatabaseField> getTargetForeignKeyFields()
public Map<org.eclipse.persistence.internal.helper.DatabaseField,org.eclipse.persistence.internal.helper.DatabaseField> getTargetForeignKeyToSourceKeys()
public void initialize(org.eclipse.persistence.internal.sessions.AbstractSession session)
throws DescriptorException
initialize in class CollectionMappingDescriptorException
public ObjectLevelReadQuery prepareNestedJoins(org.eclipse.persistence.internal.queries.JoinedAttributeManager joinManager,
ObjectBuildingQuery baseQuery,
org.eclipse.persistence.internal.sessions.AbstractSession session)
prepareNestedJoins in class ForeignReferenceMapping
public void initializeChildInheritance(ClassDescriptor parentDescriptor,
org.eclipse.persistence.internal.sessions.AbstractSession session,
HashMap<org.eclipse.persistence.internal.helper.DatabaseField,org.eclipse.persistence.internal.helper.DatabaseField> fieldTranslation,
HashMap<org.eclipse.persistence.internal.helper.DatabaseTable,org.eclipse.persistence.internal.helper.DatabaseTable> tableTranslation)
throws DescriptorException
DescriptorException
public void initializeParentInheritance(ClassDescriptor parentDescriptor,
ClassDescriptor childDescriptor,
org.eclipse.persistence.internal.sessions.AbstractSession session,
HashMap<org.eclipse.persistence.internal.helper.DatabaseField,org.eclipse.persistence.internal.helper.DatabaseField> fieldTranslation,
HashMap<org.eclipse.persistence.internal.helper.DatabaseTable,org.eclipse.persistence.internal.helper.DatabaseTable> tableTranslation)
throws DescriptorException
DescriptorException
public void iterateOnElement(org.eclipse.persistence.internal.descriptors.DescriptorIterator iterator,
Object element)
iterateOnElement in class CollectionMappingpublic boolean isAggregateCollectionMapping()
isAggregateCollectionMapping in class DatabaseMappingpublic boolean isJoiningSupported()
isJoiningSupported in class ForeignReferenceMappingpublic boolean isOwned()
isOwned in class DatabaseMappingpublic boolean isPrivateOwned()
isPrivateOwned in class ForeignReferenceMapping
public void mergeChangesIntoObject(Object target,
org.eclipse.persistence.internal.sessions.ChangeRecord changeRecord,
Object source,
org.eclipse.persistence.internal.sessions.MergeManager mergeManager)
mergeChangesIntoObject in class CollectionMapping
public void mergeIntoObject(Object target,
boolean isTargetUnInitialized,
Object source,
org.eclipse.persistence.internal.sessions.MergeManager mergeManager)
mergeIntoObject in class CollectionMapping
public void postInitialize(org.eclipse.persistence.internal.sessions.AbstractSession session)
throws DescriptorException
postInitialize in class CollectionMappingDescriptorException
public void postInsert(WriteObjectQuery query)
throws DatabaseException,
OptimisticLockException
postInsert in class CollectionMappingDatabaseException
OptimisticLockException
public void postUpdate(WriteObjectQuery writeQuery)
throws DatabaseException,
OptimisticLockException
postUpdate in class DatabaseMappingDatabaseException
OptimisticLockException
public void preDelete(DeleteObjectQuery query)
throws DatabaseException,
OptimisticLockException
preDelete in class DatabaseMappingDatabaseException
OptimisticLockException
public void preInsert(WriteObjectQuery query)
throws DatabaseException,
OptimisticLockException
preInsert in class CollectionMappingDatabaseException
OptimisticLockException
public InsertObjectQuery getAndPrepareModifyQueryForInsert(ObjectLevelModifyQuery originalQuery,
Object object)
public void prepareModifyQueryForDelete(ObjectLevelModifyQuery originalQuery,
ObjectLevelModifyQuery modifyQuery,
Object wrappedObject,
Map extraData)
public void prepareModifyQueryForUpdate(ObjectLevelModifyQuery originalQuery,
ObjectLevelModifyQuery modifyQuery,
Object object)
public void setSourceKeyFieldNames(Vector fieldNames)
public void setSourceKeyFields(Vector<org.eclipse.persistence.internal.helper.DatabaseField> sourceKeyFields)
public void setTargetForeignKeyFieldNames(Vector fieldNames)
public void setTargetForeignKeyFields(Vector<org.eclipse.persistence.internal.helper.DatabaseField> targetForeignKeyFields)
public void simpleAddToCollectionChangeRecord(Object referenceKey,
Object changeSetToAdd,
org.eclipse.persistence.internal.sessions.ObjectChangeSet changeSet,
org.eclipse.persistence.internal.sessions.AbstractSession session)
simpleAddToCollectionChangeRecord in class CollectionMapping
public void simpleRemoveFromCollectionChangeRecord(Object referenceKey,
Object changeSetToRemove,
org.eclipse.persistence.internal.sessions.ObjectChangeSet changeSet,
org.eclipse.persistence.internal.sessions.AbstractSession session)
simpleRemoveFromCollectionChangeRecord in class CollectionMapping
public Object valueFromRow(org.eclipse.persistence.internal.sessions.AbstractRecord row,
org.eclipse.persistence.internal.queries.JoinedAttributeManager joinManager,
ObjectBuildingQuery sourceQuery,
org.eclipse.persistence.internal.sessions.AbstractSession executionSession)
throws DatabaseException
valueFromRow in class ForeignReferenceMappingDatabaseException
public boolean verifyDelete(Object object,
org.eclipse.persistence.internal.sessions.AbstractSession session)
throws DatabaseException
verifyDelete in class CollectionMappingDatabaseExceptionpublic boolean isCandidateForPrivateOwnedRemoval()
isCandidateForPrivateOwnedRemoval in class DatabaseMappingpublic boolean isCascadedLockingSupported()
isCascadedLockingSupported in class DatabaseMappingpublic boolean isChangeTrackingSupported(Project project)
isChangeTrackingSupported in class CollectionMappingpublic void remoteInitialization(DistributedSession session)
remoteInitialization in class ForeignReferenceMappingpublic boolean isListOrderFieldUpdatable()
public void setIsListOrderFieldUpdatable(boolean isUpdatable)
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||