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

EclipseLink/Development/Dynamic/Design PublicAPI

Dynamic Persistence Design: Public API

This page captures the design of the public API - introduced in the new package org.eclipse.persistence.dynamic - that allows developers to define and use dynamic entities.

  • DynamicEntity.java
    • Primary interface that a dynamic entity implements. This is the API that an application uses to interact with an instance.
  • .java EntityType.java
    • Provides access to the type information (meta-model) as well as functioning as a factory for new instances

Dynamic Persistence Internal Design

New package org.eclipse.persistence.internal.dynamic

Back to the top