Interface XMLSetting
-
public interface XMLSettingINTERNAL:Purpose:This class defines an interface that provides information about mappings and values, used to marshal Sequenced objects.
Responsibilities:
- Provide access to a Mapping
- Provide access to the a value to be marshalled for the specific mapping
When marshalling a sequenced Data Object, that Object will provide TopLink OXM with an Ordered list of TopLinkSetting objects. These will be used to marshal the appropriate values in the correct order.
- Since:
- Oracle TopLink 11.1.1.0.0
- Author:
- mmacivor
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MappinggetMapping()java.lang.ObjectgetValue()Gets the value to be marshalled using the specified mapping.
-
-
-
Method Detail
-
getMapping
Mapping getMapping()
- Returns:
- The TopLink OXM mapping associated with this setting
-
getValue
java.lang.Object getValue()
Gets the value to be marshalled using the specified mapping.- Returns:
- The value to be marshalled.
-
-