Module org.eclipse.persistence.core
Class ProxyIndirectionPolicy
java.lang.Object
org.eclipse.persistence.internal.indirection.IndirectionPolicy
org.eclipse.persistence.internal.indirection.BasicIndirectionPolicy
org.eclipse.persistence.internal.indirection.ProxyIndirectionPolicy
- All Implemented Interfaces:
Serializable,Cloneable
ProxyIndirectionPolicy
Define the behavior for Proxy Indirection.
Proxy Indirection uses the Proxy and InvocationHandler features
of JDK 1.3 to provide "transparent indirection" for 1:1 relationships. In order to use Proxy
Indirection:
- The target class must implement at least one public interface
- The attribute on the source class must be typed as that public interface
toString is called on the proxy the real object data is retrieved from the database.- Since:
- TopLink 3.0
- See Also:
-
Field Summary
Fields inherited from class org.eclipse.persistence.internal.indirection.IndirectionPolicy
mapping -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbackupCloneAttribute(Object attributeValue, Object clone, Object backup, UnitOfWorkImpl unitOfWork) INTERNAL: Return a backup clone of the attribute.cloneAttribute(Object attributeValue, Object original, CacheKey cacheKey, Object clone, Integer refreshCascade, AbstractSession cloningSession, boolean buildDirectlyFromRow) INTERNAL: Return a clone of the attribute.extractReferenceRow(Object referenceObject) INTERNAL: Return the reference row for the reference object.voidfixObjectReferences(Object object, Map<Object, ObjectDescriptor> objectDescriptors, Map<Object, Object> processedObjects, ObjectLevelReadQuery query, DistributedSession session) INTERNAL: An object has been serialized from the server to the client.getOriginalIndirectionObject(Object unitOfWorkIndirectionObject, AbstractSession session) INTERNAL: Return the original indirection object for a unit of work indirection object.getRealAttributeValueFromObject(Object obj, Object object) INTERNAL: Return the "real" attribute value, as opposed to any wrapper.static ObjectgetValueFromProxy(Object value) INTERNAL: Given a proxy object, trigger the indirection and return the actual object represented by the proxy.booleanINTERNAL: Return if targetInterfaces is not empty.voidINTERNAL: Nothing required.booleanisAttributeValueFullyBuilt(Object attributeValue) INTERNAL: The method validateAttributeOfInstantiatedObject(Object attributeValue) fixes the value of the attributeValue in cases where it is null and indirection requires that it contain some specific data structure.booleanisValidType(Class<?> attributeType) INTERNAL: Verify that a class type is valid to use for the proxy.voiditerateOnAttributeValue(DescriptorIterator iterator, Object attributeValue) INTERNAL: Iterate over the specified attribute value.voidmergeRemoteValueHolder(Object clientSideDomainObject, Object serverSideDomainObject, MergeManager mergeManager) INTERNAL: Replace the client value holder with the server value holder after copying some of the settings from the client value holder.INTERNAL: Return the null value of the appropriate attribute.booleanobjectIsEasilyInstantiated(Object object) INTERNAL: Return whether the specified object can be instantiated without database access.booleanobjectIsInstantiated(Object object) INTERNAL: Return whether the specified object is instantiated.voidReset the wrapper used to store the value.voidsetRealAttributeValueInObject(Object target, Object attributeValue) INTERNAL: Set the "real" value of the attribute to attributeValue.validateAttributeOfInstantiatedObject(Object attributeValue) INTERNAL: Verify that the value of the attribute within an instantiated object is of the appropriate type for the indirection policy.voidvalidateDeclaredAttributeType(Class<?> attributeType, IntegrityChecker checker) INTERNAL: Verify that attribute type is correct for the indirection policy.voidvalidateGetMethodReturnType(Class<?> returnType, IntegrityChecker checker) INTERNAL: Verify that the return type of the attribute's get method is correct for the indirection policy.voidvalidateSetMethodParameterType(Class<?> parameterType, IntegrityChecker checker) INTERNAL: Verify that the parameter type of the attribute's set method is correct for the indirection policy.valueFromBatchQuery(ReadQuery batchQuery, AbstractRecord row, ObjectLevelReadQuery originalQuery, CacheKey parentCacheKey) INTERNAL: Return the value to be stored in the object's attribute.valueFromMethod(Object object, AbstractRecord row, AbstractSession session) INTERNAL: Return the value to be stored in the object's attribute.valueFromQuery(ReadQuery query, AbstractRecord row, AbstractSession session) INTERNAL: Return the value to be stored in the object's attribute.valueFromRow(Object object) INTERNAL: Return the value to be stored in the object's attribute.Methods inherited from class org.eclipse.persistence.internal.indirection.BasicIndirectionPolicy
buildIndirectObject, extractPrimaryKeyForReferenceObject, getOriginalIndirectionObjectForMerge, getOriginalValueHolder, getValueFromRemoteValueHolder, setSourceObject, typeIsValid, valueFromQueryMethods inherited from class org.eclipse.persistence.internal.indirection.IndirectionPolicy
buildCascadeQuery, clone, getCollectionMapping, getForeignReferenceMapping, getMapping, getOneToOneMapping, getTransformationMapping, instantiateObject, isWeavedObjectBasicIndirectionPolicy, mergeClientIntoServerValueHolder, objectIsInstantiatedOrChanged, setMapping, setRealAttributeValueInObject, setUseLazyInstantiation, shouldUseLazyInstantiation, usesIndirection, usesTransparentIndirection, validateContainerPolicy, validateDeclaredAttributeTypeForCollection, validateGetMethodReturnTypeForCollection, validateSetMethodParameterTypeForCollection
-
Constructor Details
-
ProxyIndirectionPolicy
-
ProxyIndirectionPolicy
public ProxyIndirectionPolicy()
-
-
Method Details
-
initialize
public void initialize()INTERNAL: Nothing required.- Overrides:
initializein classIndirectionPolicy
-
reset
Reset the wrapper used to store the value.- Overrides:
resetin classBasicIndirectionPolicy
-
hasTargetInterfaces
public boolean hasTargetInterfaces()INTERNAL: Return if targetInterfaces is not empty. -
valueFromRow
INTERNAL: Return the value to be stored in the object's attribute. This will be a proxy object.- Overrides:
valueFromRowin classBasicIndirectionPolicy
-
valueFromQuery
INTERNAL: Return the value to be stored in the object's attribute. This will be a proxy object.- Overrides:
valueFromQueryin classBasicIndirectionPolicy
-
valueFromMethod
INTERNAL: Return the value to be stored in the object's attribute. This value is determined by invoking the appropriate method on the object and passing it the row and session.- Overrides:
valueFromMethodin classBasicIndirectionPolicy
-
valueFromBatchQuery
public Object valueFromBatchQuery(ReadQuery batchQuery, AbstractRecord row, ObjectLevelReadQuery originalQuery, CacheKey parentCacheKey) INTERNAL: Return the value to be stored in the object's attribute. This value is determined by the batch query. * NOTE: Currently not supported anyway.- Overrides:
valueFromBatchQueryin classBasicIndirectionPolicy
-
objectIsInstantiated
INTERNAL: Return whether the specified object is instantiated.- Overrides:
objectIsInstantiatedin classBasicIndirectionPolicy
-
objectIsEasilyInstantiated
INTERNAL: Return whether the specified object can be instantiated without database access.- Overrides:
objectIsEasilyInstantiatedin classBasicIndirectionPolicy
-
nullValueFromRow
INTERNAL: Return the null value of the appropriate attribute. That is, the field from the database is NULL, return what should be placed in the object's attribute as a result.- Overrides:
nullValueFromRowin classBasicIndirectionPolicy
-
mergeRemoteValueHolder
public void mergeRemoteValueHolder(Object clientSideDomainObject, Object serverSideDomainObject, MergeManager mergeManager) INTERNAL: Replace the client value holder with the server value holder after copying some of the settings from the client value holder.- Overrides:
mergeRemoteValueHolderin classBasicIndirectionPolicy
-
getRealAttributeValueFromObject
INTERNAL: Return the "real" attribute value, as opposed to any wrapper. This will trigger the wrapper to instantiate the value.- Overrides:
getRealAttributeValueFromObjectin classBasicIndirectionPolicy
-
getValueFromProxy
INTERNAL: Given a proxy object, trigger the indirection and return the actual object represented by the proxy. -
setRealAttributeValueInObject
INTERNAL: Set the "real" value of the attribute to attributeValue.- Overrides:
setRealAttributeValueInObjectin classBasicIndirectionPolicy
-
getOriginalIndirectionObject
public Object getOriginalIndirectionObject(Object unitOfWorkIndirectionObject, AbstractSession session) INTERNAL: Return the original indirection object for a unit of work indirection object.- Overrides:
getOriginalIndirectionObjectin classBasicIndirectionPolicy
-
fixObjectReferences
public void fixObjectReferences(Object object, Map<Object, ObjectDescriptor> objectDescriptors, Map<Object, Object> processedObjects, ObjectLevelReadQuery query, DistributedSession session) INTERNAL: An object has been serialized from the server to the client. Replace the transient attributes of the remote value holders with client-side objects.- Overrides:
fixObjectReferencesin classBasicIndirectionPolicy
-
extractReferenceRow
INTERNAL: Return the reference row for the reference object. This allows the new row to be built without instantiating the reference object. Return null if the object has already been instantiated.- Overrides:
extractReferenceRowin classBasicIndirectionPolicy
-
cloneAttribute
public Object cloneAttribute(Object attributeValue, Object original, CacheKey cacheKey, Object clone, Integer refreshCascade, AbstractSession cloningSession, boolean buildDirectlyFromRow) INTERNAL: Return a clone of the attribute.- Overrides:
cloneAttributein classBasicIndirectionPolicy- Parameters:
buildDirectlyFromRow- indicates that we are building the clone directly from a row as opposed to building the original from the row, putting it in the shared cache, and then cloning the original.
-
backupCloneAttribute
public Object backupCloneAttribute(Object attributeValue, Object clone, Object backup, UnitOfWorkImpl unitOfWork) INTERNAL: Return a backup clone of the attribute.- Overrides:
backupCloneAttributein classBasicIndirectionPolicy
-
iterateOnAttributeValue
INTERNAL: Iterate over the specified attribute value.- Overrides:
iterateOnAttributeValuein classBasicIndirectionPolicy
-
validateAttributeOfInstantiatedObject
INTERNAL: Verify that the value of the attribute within an instantiated object is of the appropriate type for the indirection policy. In this case, the attribute must non-null and implement some public interface.- Overrides:
validateAttributeOfInstantiatedObjectin classBasicIndirectionPolicy
-
validateDeclaredAttributeType
public void validateDeclaredAttributeType(Class<?> attributeType, IntegrityChecker checker) throws DescriptorException INTERNAL: Verify that attribute type is correct for the indirection policy. If it is incorrect, add an exception to the integrity checker. In this case, the attribute type must be contained in targetInterfaces.- Overrides:
validateDeclaredAttributeTypein classBasicIndirectionPolicy- Throws:
DescriptorException
-
validateGetMethodReturnType
public void validateGetMethodReturnType(Class<?> returnType, IntegrityChecker checker) throws DescriptorException INTERNAL: Verify that the return type of the attribute's get method is correct for the indirection policy. If it is incorrect, add an exception to the integrity checker. In this case, the return type must be a public interface.- Overrides:
validateGetMethodReturnTypein classBasicIndirectionPolicy- Throws:
DescriptorException
-
validateSetMethodParameterType
public void validateSetMethodParameterType(Class<?> parameterType, IntegrityChecker checker) throws DescriptorException INTERNAL: Verify that the parameter type of the attribute's set method is correct for the indirection policy. If it is incorrect, add an exception to the integrity checker. In this case, the parameter type must be a public interface.- Overrides:
validateSetMethodParameterTypein classBasicIndirectionPolicy- Throws:
DescriptorException
-
isAttributeValueFullyBuilt
INTERNAL: The method validateAttributeOfInstantiatedObject(Object attributeValue) fixes the value of the attributeValue in cases where it is null and indirection requires that it contain some specific data structure. Return whether this will happen. This method is used to help determine if indirection has been triggered- Overrides:
isAttributeValueFullyBuiltin classBasicIndirectionPolicy- See Also:
-
isValidType
INTERNAL: Verify that a class type is valid to use for the proxy. The class must be one of the interfaces intargetInterfaces.
-