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/Development/Dynamic/Design PublicAPI"

(New page: == Dynamic Persistence Design: Public API == This page captures the design of the public API that allows developers to define and use dynamic entities * [http://dev.eclipse.org/svnroot/r...)
 
(Dynamic Persistence Design: Public API)
Line 15: Line 15:
 
** Factory for creating dynamic types and bootstrapping using XML
 
** Factory for creating dynamic types and bootstrapping using XML
  
* [http://dev.eclipse.org/svnroot/rt/org.eclipse.persistence/incubator/dynamic/branches/1.1.0/org.eclipse.persistence.core.dynamic/src/org/eclipse/persistence/exceptions/DynamicEntityException.java DynamicEntityException.java (org.eclipse.persistence.exceptions)]
+
* [http://dev.eclipse.org/svnroot/rt/org.eclipse.persistence/incubator/dynamic/branches/1.1.0/org.eclipse.persistence.core.dynamic/src/org/eclipse/persistence/exceptions/DynamicException.java DynamicException.java (org.eclipse.persistence.exceptions)]
** Dynamic usage exception (may need to be renamed DynamicException since it involves entities and type issues)
+
** Dynamic usage exception  
  
 
=== Implementation Package: org.eclipse.persistence.internal.dynamic ===
 
=== Implementation Package: org.eclipse.persistence.internal.dynamic ===
  
 
While this is not part of the 'public' API it does define the default implementations used.
 
While this is not part of the 'public' API it does define the default implementations used.

Revision as of 13:19, 10 September 2009

Dynamic Persistence Design: Public API

This page captures the design of the public API that allows developers to define and use dynamic entities

Implementation Package: org.eclipse.persistence.internal.dynamic

While this is not part of the 'public' API it does define the default implementations used.

Back to the top