Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "EclipseLink/Examples/MOXy/MeetInTheMiddle"

(New page: == Overview == This set of examples is intended to introduce you to meet-in-the-middle mapping. This is when you are mapping an existing object model to an existing XML schema. This can...)
 
(Overview)
Line 4: Line 4:
  
 
* '''[[EclipseLink/Examples/MOXy/MeetInTheMiddle/Advantages|Advantages]]''' - Compare meet-in-the-middle mapping to other approaches.
 
* '''[[EclipseLink/Examples/MOXy/MeetInTheMiddle/Advantages|Advantages]]''' - Compare meet-in-the-middle mapping to other approaches.
 +
* '''[[EclipseLink/Examples/MOXy/XPath|XPath]]''' - XPath based mapping.
 +
* '''[[EclipseLink/Examples/MOXy/Extensible|Extensible]]''' -  Virtual properties defined by the MOXy metadata to provide a way to extend a class without modifying the source.
 +
* '''[[EclipseLink/Examples/MOXy/XMLNameTransformer|XMLNameTransformer]]''' - Customized XML Name Conversions.
 +
* '''[[EclipseLink/Examples/MOXy/ElementMappingByAttributeValue|ElementMappingByAttributeValue]]''' - Mapping elements based on the value of an attribute.
 +
* '''[[EclipseLink/Examples/MOXy/MetadataRepository|MetadataRepository]]''' - XML mapping document is an alternative to using annotations.

Revision as of 14:27, 15 June 2011

Overview

This set of examples is intended to introduce you to meet-in-the-middle mapping. This is when you are mapping an existing object model to an existing XML schema. This can commonly occur when you have an existing application that you wish to expose as a web service using a XML schema corresponding to some industry standard.

Back to the top