org.eclipse.persistence.mappings.transformers
Interface AttributeTransformer
- All Superinterfaces:
- java.io.Serializable
- All Known Implementing Classes:
- AttributeTransformerAdapter, MethodBasedAttributeTransformer, QNameTransformer
public interface AttributeTransformer
- extends java.io.Serializable
PUBLIC:
- Version:
- $Header: /cvsroot/org.eclipse/www/eclipselink/api/2.2/org/eclipse/persistence/mappings/transformers/AttributeTransformer.html,v 1.2 2011/02/14 15:11:09 pkrogh Exp $
- Author:
- mmacivor
- Since:
- 10
This interface is used by the Transformation Mapping to build the value for a
the mapped attribute on a read. The user must provide an implementation of this interface to the
Transformation Mapping.
initialize
void initialize(AbstractTransformationMapping mapping)
- Parameters:
mapping
- - The mapping associated with this transformer. Only used if some special information is required.
buildAttributeValue
java.lang.Object buildAttributeValue(Record record,
java.lang.Object object,
Session session)
- Parameters:
record
- - The metadata being used to build the object.session
- - the current sessionobject
- - The current object that the attribute is being built for.
- Returns:
- - The attribute value to be built into the object containing this mapping.