- java.lang.Object
-
- org.eclipse.persistence.sdo.helper.metadata.QNameTransformer
-
- All Implemented Interfaces:
Serializable,CoreFieldTransformer<Session>,AttributeTransformer,FieldTransformer
public class QNameTransformer extends Object implements AttributeTransformer, FieldTransformer
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static StringQNAME_NAMESPACE_PREFIX-
Fields inherited from interface org.eclipse.persistence.core.mappings.transformers.CoreFieldTransformer
BUILD_FIELD_VALUE_METHOD
-
-
Constructor Summary
Constructors Constructor Description QNameTransformer(String xPath)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ObjectbuildAttributeValue(DataRecord dataRecord, Object object, Session session)ObjectbuildFieldValue(Object instance, String fieldName, Session session)voidinitialize(AbstractTransformationMapping mapping)Initialize this transformer.
-
-
-
Field Detail
-
QNAME_NAMESPACE_PREFIX
public static final String QNAME_NAMESPACE_PREFIX
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
QNameTransformer
public QNameTransformer(String xPath)
-
-
Method Detail
-
initialize
public void initialize(AbstractTransformationMapping mapping)
Description copied from interface:FieldTransformerInitialize this transformer. Only required if the user needs some special information from the mapping in order to do the transformation- Specified by:
initializein interfaceAttributeTransformer- Specified by:
initializein interfaceFieldTransformer- Parameters:
mapping- - The mapping associated with this transformer. Only used if some special information is required.
-
buildAttributeValue
public Object buildAttributeValue(DataRecord dataRecord, Object object, Session session)
- Specified by:
buildAttributeValuein interfaceAttributeTransformer- Parameters:
dataRecord- - The metadata being used to build the object.object- - The current object that the attribute is being built for.session- - the current session- Returns:
- - The attribute value to be built into the object containing this mapping.
-
buildFieldValue
public Object buildFieldValue(Object instance, String fieldName, Session session)
- Specified by:
buildFieldValuein interfaceCoreFieldTransformer<Session>- Specified by:
buildFieldValuein interfaceFieldTransformer- Parameters:
instance- - an instance of the domain class which contains the attributefieldName- - the name of the field being transformed. Used if the user wants to use this transformer for multiple fields.session- - the current session- Returns:
- - The value to be written for the field associated with this transformer
-
-