Module org.eclipse.persistence.jpa
Class ValuePartitionMetadata
- java.lang.Object
-
- org.eclipse.persistence.internal.jpa.metadata.ORMetadata
-
- org.eclipse.persistence.internal.jpa.metadata.partitioning.ValuePartitionMetadata
-
public class ValuePartitionMetadata extends ORMetadata
INTERNAL: Define JPA meta-data for partitioning policy. Key notes: - any metadata mapped from XML to this class must be compared in the equals method. - any metadata mapped from XML to this class must be initialized in the initXMLObject 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.2
- Author:
- James Sutherland
-
-
Field Summary
Fields Modifier and Type Field Description protected StringconnectionPoolprotected Stringvalue-
Fields inherited from class org.eclipse.persistence.internal.jpa.metadata.ORMetadata
m_project
-
-
Constructor Summary
Constructors Constructor Description ValuePartitionMetadata()INTERNAL: Used for XML loading.ValuePartitionMetadata(MetadataAnnotation annotation, MetadataAccessor accessor)INTERNAL: Used for annotation loading.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object objectToCompare)INTERNAL: Used for XML merging and overriding.StringgetConnectionPool()INTERNAL: Used for OX mapping.StringgetValue()INTERNAL: Used for OX mapping.inthashCode()voidsetConnectionPool(String connectionPool)INTERNAL: Used for OX mapping.voidsetValue(String value)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
-
ValuePartitionMetadata
public ValuePartitionMetadata()
INTERNAL: Used for XML loading.
-
ValuePartitionMetadata
public ValuePartitionMetadata(MetadataAnnotation annotation, MetadataAccessor accessor)
INTERNAL: Used for annotation loading.
-
-
Method Detail
-
equals
public boolean equals(Object objectToCompare)
INTERNAL: Used for XML merging and overriding.- Specified by:
equalsin classORMetadata
-
getConnectionPool
public String getConnectionPool()
INTERNAL: Used for OX mapping.
-
getValue
public String getValue()
INTERNAL: Used for OX mapping.
-
setConnectionPool
public void setConnectionPool(String connectionPool)
INTERNAL: Used for OX mapping.
-
setValue
public void setValue(String value)
INTERNAL: Used for OX mapping.
-
-