Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be 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/Release/2.4.0/JAXB RI Extensions/XML Accessor Factory"

Line 1: Line 1:
 
<div style="margin:5px;float:right;border:1px solid #000000;padding:5px">__TOC__</div>
 
<div style="margin:5px;float:right;border:1px solid #000000;padding:5px">__TOC__</div>
  
= Design Documentation: Accessor Factory =
+
= Design Documentation: XML Accessor Factory =
  
 
[http://bugs.eclipse.org/372403 ER 372403]
 
[http://bugs.eclipse.org/372403 ER 372403]
  
 
In the current JAXB RI, developed by Sun, there are a series of "proprietary" JAXB extensions that are available to provide advanced JAXB functionality outside of the JAXB spec (these extension classes reside in the '''com.sun.xml.bind''' package).
 
In the current JAXB RI, developed by Sun, there are a series of "proprietary" JAXB extensions that are available to provide advanced JAXB functionality outside of the JAXB spec (these extension classes reside in the '''com.sun.xml.bind''' package).
 +
 +
By providing implementations of Accessor and AccessorFactory classes, the user can provide their own logic for getting and setting property values, both at the Class and Package level.
  
 
This document will outline EclipseLink MOXY's support to this extension.
 
This document will outline EclipseLink MOXY's support to this extension.
  
 
= Behaviour =
 
= Behaviour =
 +
 +
  
 
= Configuration =
 
= Configuration =
  
 
= Examples =
 
= Examples =

Revision as of 13:47, 4 June 2012

Design Documentation: XML Accessor Factory

ER 372403

In the current JAXB RI, developed by Sun, there are a series of "proprietary" JAXB extensions that are available to provide advanced JAXB functionality outside of the JAXB spec (these extension classes reside in the com.sun.xml.bind package).

By providing implementations of Accessor and AccessorFactory classes, the user can provide their own logic for getting and setting property values, both at the Class and Package level.

This document will outline EclipseLink MOXY's support to this extension.

Behaviour

Configuration

Examples

Back to the top