Modified: db/jdo/site/docs/team-list.html URL: http://svn.apache.org/viewvc/db/jdo/site/docs/team-list.html?rev=584513&r1=584512&r2=584513&view=diff ============================================================================== --- db/jdo/site/docs/team-list.html (original) +++ db/jdo/site/docs/team-list.html Sun Oct 14 01:45:51 2007 @@ -15,5 +15,5 @@ If you would like to become a committer, please see Get Involved.

Apache JDO Committers

NameOrganization
Matthew AdamsInterface21
Erik BengtsonJPOX
Michael BouschenTech@Spree
Michelle CaisseSun Microsystems, Inc.
Andy JeffersonJPOX
Patrick LinskeySolarmetric
Geir Magnusson Jr.IBM
Brian McCallister
Craig RussellSun Microsystems, Inc.
Dain Sundstrom
Brian Topping
Michael WatzekTech@Spree
Martin ZaunSun Microsystems, Inc.

Apache JDO Contributors

NameOrganization
Chris Beams
Ilan KirschObjectDB

Modified: db/jdo/site/docs/transactions.html URL: http://svn.apache.org/viewvc/db/jdo/site/docs/transactions.html?rev=584513&r1=584512&r2=584513&view=diff ============================================================================== --- db/jdo/site/docs/transactions.html (original) +++ db/jdo/site/docs/transactions.html Sun Oct 14 01:45:51 2007 @@ -40,5 +40,5 @@

pm.currentTransaction().setOptimistic(true);

Modified: db/jdo/site/docs/why_jdo.html URL: http://svn.apache.org/viewvc/db/jdo/site/docs/why_jdo.html?rev=584513&r1=584512&r2=584513&view=diff ============================================================================== --- db/jdo/site/docs/why_jdo.html (original) +++ db/jdo/site/docs/why_jdo.html Sun Oct 14 01:45:51 2007 @@ -32,5 +32,5 @@
  • some advanced EJB containers like Bea Weblogic and IBM Websphere provide support for primary key generation, inherited objects and database schema creation as well.

  • Modified: db/jdo/site/xdocs/jdo_v_jpa_orm.xml URL: http://svn.apache.org/viewvc/db/jdo/site/xdocs/jdo_v_jpa_orm.xml?rev=584513&r1=584512&r2=584513&view=diff ============================================================================== --- db/jdo/site/xdocs/jdo_v_jpa_orm.xml (original) +++ db/jdo/site/xdocs/jdo_v_jpa_orm.xml Sun Oct 14 01:45:51 2007 @@ -11,258 +11,276 @@

    There are 2 prevalent specification in the Java ORM world. JDO2 provides the most complete - definition, whilst JPA is the most recent. In this guide we show the different types of ORM relation - commonly used, and mark against it which specification supports it. This list is not yet complete but - will be added to to provide a comprehensive list of relationship type and where you can find it. + definition, whilst JPA is the most recent.

    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    Field TypeRelationJDO2JPA1
    PC1-1 Unidirectional
    PC1-1 Bidirectional
    PC1-1 serialised
    PC1-1 CompoundIdentity Unidirectional
    Interface1-1 Unidirectional
    Interface1-1 Bidirectional
    Interface1-1 serialised?
    Collection<PC>1-N ForeignKey Unidirectional Collection
    Collection<PC>1-N ForeignKey Bidirectional Collection
    Collection<PC>1-N JoinTable Unidirectional Collection
    Collection<PC>1-N JoinTable Bidirectional Collection
    Collection<Non-PC>1-N JoinTable Collection
    Collection<PC>1-N JoinTable Collection using shared JoinTable
    Collection<PC>1-N ForeignKey Collection using shared ForeignKey
    Collection<PC>M-N JoinTable
    Collection<PC>1-N CompoundIdentity Unidirectional
    Collection<PC>1-N serialised Collection
    Collection<PC>1-N JoinTable Collection of serialised elements
    List<PC>1-N ForeignKey Unidirectional Indexed List
    List<PC>1-N ForeignKey Bidirectional Indexed List
    List<PC>1-N JoinTable Unidirectional Indexed List
    List<PC>1-N JoinTable Bidirectional Indexed List
    List<Non-PC>1-N JoinTable Indexed List
    List<PC>1-N ForeignKey Unidirectional Ordered List
    List<PC>1-N ForeignKey Bidirectional Ordered List
    List<PC>1-N JoinTable Unidirectional Ordered List
    List<PC>1-N JoinTable Bidirectional Ordered List
    Map<PC, PC>1-N JoinTable Map
    Map<Non-PC, PC>1-N JoinTable Map
    Map<PC, Non-PC>1-N JoinTable Map
    Map<Non-PC, Non-PC>1-N JoinTable Map
    Map<Non-PC, PC>1-N ForeignKey Map Unidirectional (key stored in value)
    Map<Non-PC, PC>1-N ForeignKey Map Bidirectional (key stored in value)
    Map<PC, Non-PC>1-N ForeignKey Map Unidirectional (value stored in key)
    Map<PC, PC>1-N serialised Map
    Map<PC, PC>1-N JoinTable Map of serialised keys/values
    PC[ ]1-N ForeignKey Unidirectional Array
    PC[ ]1-N JoinTable Unidirectional Array
    PC[ ]1-N serialised Array
    Non-PC[ ]1-N JoinTable Unidirectional Array
    + + +

    + In this guide we show the different types of ORM relation commonly used, and mark + against it which specification supports it. This list is not yet complete but will be + added to to provide a comprehensive list of relationship type and where you can find it. +

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Field TypeRelationJDO2JPA1
    PC1-1 Unidirectional
    PC1-1 Bidirectional
    PC1-1 serialised
    PC1-1 CompoundIdentity Unidirectional
    PC1-N CompoundIdentity Collection Bidirectional
    PC1-N CompoundIdentity Map Bidirectional
    Interface1-1 Unidirectional
    Interface1-1 Bidirectional
    Interface1-1 serialised?
    Collection<PC>1-N ForeignKey Unidirectional Collection
    Collection<PC>1-N ForeignKey Bidirectional Collection
    Collection<PC>1-N JoinTable Unidirectional Collection
    Collection<PC>1-N JoinTable Bidirectional Collection
    Collection<Non-PC>1-N JoinTable Collection
    Collection<PC>1-N JoinTable Collection using shared JoinTable
    Collection<PC>1-N ForeignKey Collection using shared ForeignKey
    Collection<PC>M-N JoinTable
    Collection<PC>1-N CompoundIdentity Unidirectional
    Collection<PC>1-N serialised Collection
    Collection<PC>1-N JoinTable Collection of serialised elements
    List<PC>1-N ForeignKey Unidirectional Indexed List
    List<PC>1-N ForeignKey Bidirectional Indexed List
    List<PC>1-N JoinTable Unidirectional Indexed List
    List<PC>1-N JoinTable Bidirectional Indexed List
    List<Non-PC>1-N JoinTable Indexed List
    List<PC>1-N ForeignKey Unidirectional Ordered List
    List<PC>1-N ForeignKey Bidirectional Ordered List
    List<PC>1-N JoinTable Unidirectional Ordered List
    List<PC>1-N JoinTable Bidirectional Ordered List
    Map<PC, PC>1-N JoinTable Map
    Map<Non-PC, PC>1-N JoinTable Map
    Map<PC, Non-PC>1-N JoinTable Map
    Map<Non-PC, Non-PC>1-N JoinTable Map
    Map<Non-PC, PC>1-N ForeignKey Map Unidirectional (key stored in value)
    Map<Non-PC, PC>1-N ForeignKey Map Bidirectional (key stored in value)
    Map<PC, Non-PC>1-N ForeignKey Map Unidirectional (value stored in key)
    Map<PC, PC>1-N serialised Map
    Map<PC, PC>1-N JoinTable Map of serialised keys/values
    PC[ ]1-N ForeignKey Unidirectional Array
    PC[ ]1-N JoinTable Unidirectional Array
    PC[ ]1-N serialised Array
    Non-PC[ ]1-N JoinTable Unidirectional Array
    +