Module org.eclipse.persistence.jpa
Class FetchGroupMetadata
- java.lang.Object
-
- org.eclipse.persistence.internal.jpa.metadata.ORMetadata
-
- org.eclipse.persistence.internal.jpa.metadata.queries.FetchGroupMetadata
-
public class FetchGroupMetadata extends ORMetadata
INTERNAL: Object to hold onto a named fetch group metadata. Key notes: - any metadata mapped from XML to this class must be compared in the equals method. - when loading from annotations, the constructor accepts the metadata accessor this metadata was loaded from. Used it to look up any 'companion' annotation needed for processing. - methods should be preserved in alphabetical order.- Since:
- EclipseLink 2.1
- Author:
- Guy Pelletier
-
-
Field Summary
-
Fields inherited from class org.eclipse.persistence.internal.jpa.metadata.ORMetadata
m_project
-
-
Constructor Summary
Constructors Constructor Description FetchGroupMetadata()INTERNAL: Used for XML loading.FetchGroupMetadata(MetadataAnnotation fetchGroup, MetadataAccessor accessor)INTERNAL: Used for annotation loading.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object objectToCompare)INTERNAL:List<FetchAttributeMetadata>getFetchAttributes()INTERNAL: Used for OX mapping.BooleangetLoad()INTERNAL: Used for OX mapping.StringgetName()INTERNAL: Used for OX mapping.inthashCode()voidprocess(ClassAccessor accessor)INTERNAL:voidsetFetchAttributes(List<FetchAttributeMetadata> attributes)INTERNAL: Used for OX mapping.voidsetLoad(Boolean load)INTERNAL: Used for OX mapping.voidsetName(String name)INTERNAL: Used for OX mapping.-
Methods inherited from class org.eclipse.persistence.internal.jpa.metadata.ORMetadata
getAccessibleObject, getAccessibleObjectName, getAnnotation, getBoxedType, getDatabaseTypeEnum, getEntityMappings, getFullyQualifiedClassName, getIdentifier, getJavaClass, getJavaClassName, getLoader, getLocation, getLogger, getMetadataClass, getMetadataClass, getMetadataClass, getMetadataFactory, getName, getPrimitiveClassForName, getProject, getText, getXMLElement, hasIdentifier, hasText, initXMLClassName, initXMLObject, initXMLObject, initXMLObjects, initXMLTextObject, loadedFromAnnotation, loadedFromEclipseLinkXML, loadedFromXML, merge, mergeORObjectLists, mergeORObjects, mergeSimpleObjects, reloadEntity, reloadMappedSuperclass, setAccessibleObject, setEntityMappings, setFieldName, setFieldName, setProject, shouldOverride, valuesMatch, valuesMatch
-
-
-
-
Constructor Detail
-
FetchGroupMetadata
public FetchGroupMetadata()
INTERNAL: Used for XML loading.
-
FetchGroupMetadata
public FetchGroupMetadata(MetadataAnnotation fetchGroup, MetadataAccessor accessor)
INTERNAL: Used for annotation loading.
-
-
Method Detail
-
equals
public boolean equals(Object objectToCompare)
INTERNAL:- Specified by:
equalsin classORMetadata
-
getFetchAttributes
public List<FetchAttributeMetadata> getFetchAttributes()
INTERNAL: Used for OX mapping.
-
getLoad
public Boolean getLoad()
INTERNAL: Used for OX mapping.
-
getName
public String getName()
INTERNAL: Used for OX mapping.
-
process
public void process(ClassAccessor accessor)
INTERNAL:
-
setFetchAttributes
public void setFetchAttributes(List<FetchAttributeMetadata> attributes)
INTERNAL: Used for OX mapping.
-
setLoad
public void setLoad(Boolean load)
INTERNAL: Used for OX mapping.
-
setName
public void setName(String name)
INTERNAL: Used for OX mapping.
-
-