You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jdo-commits@db.apache.org by cl...@apache.org on 2006/04/01 03:34:02 UTC

svn commit: r390564 - in /db/jdo: branches/2.0/tck20/src/jdo/applicationidentity/org/apache/jdo/tck/pc/company/ branches/2.0/tck20/src/jdo/datastoreidentity/org/apache/jdo/tck/pc/company/ trunk/tck20/src/jdo/applicationidentity/org/apache/jdo/tck/pc/co...

Author: clr
Date: Fri Mar 31 17:34:00 2006
New Revision: 390564

URL: http://svn.apache.org/viewcvs?rev=390564&view=rev
Log:
JDO-358 Fixed incorrect metadata for persistent interfaces

Modified:
    db/jdo/branches/2.0/tck20/src/jdo/applicationidentity/org/apache/jdo/tck/pc/company/package.jdo
    db/jdo/branches/2.0/tck20/src/jdo/datastoreidentity/org/apache/jdo/tck/pc/company/package.jdo
    db/jdo/trunk/tck20/src/jdo/applicationidentity/org/apache/jdo/tck/pc/company/package.jdo
    db/jdo/trunk/tck20/src/jdo/datastoreidentity/org/apache/jdo/tck/pc/company/package.jdo

Modified: db/jdo/branches/2.0/tck20/src/jdo/applicationidentity/org/apache/jdo/tck/pc/company/package.jdo
URL: http://svn.apache.org/viewcvs/db/jdo/branches/2.0/tck20/src/jdo/applicationidentity/org/apache/jdo/tck/pc/company/package.jdo?rev=390564&r1=390563&r2=390564&view=diff
==============================================================================
--- db/jdo/branches/2.0/tck20/src/jdo/applicationidentity/org/apache/jdo/tck/pc/company/package.jdo (original)
+++ db/jdo/branches/2.0/tck20/src/jdo/applicationidentity/org/apache/jdo/tck/pc/company/package.jdo Fri Mar 31 17:34:00 2006
@@ -157,7 +157,7 @@
         <interface name="IEmployee"
             identity-type="application">
             <property name="reviewedProjects" persistence-modifier="persistent">
-                <collection element-type="org.apache.jdo.tck.pc.company.Project"/>
+                <collection element-type="org.apache.jdo.tck.pc.company.IProject"/>
             </property>
             <property name="projects" persistence-modifier="persistent">
                 <collection element-type="org.apache.jdo.tck.pc.company.IProject"/>
@@ -211,7 +211,7 @@
             </query>
             <query name="unmodifiable" unmodifiable="true">
                 SELECT firstname, lastname 
-                FROM org.apache.jdo.tck.pc.company.Person
+                FROM org.apache.jdo.tck.pc.company.IPerson
             </query>
             <query name="packageJDO">
                 SELECT FROM org.apache.jdo.tck.pc.company.IPerson

Modified: db/jdo/branches/2.0/tck20/src/jdo/datastoreidentity/org/apache/jdo/tck/pc/company/package.jdo
URL: http://svn.apache.org/viewcvs/db/jdo/branches/2.0/tck20/src/jdo/datastoreidentity/org/apache/jdo/tck/pc/company/package.jdo?rev=390564&r1=390563&r2=390564&view=diff
==============================================================================
--- db/jdo/branches/2.0/tck20/src/jdo/datastoreidentity/org/apache/jdo/tck/pc/company/package.jdo (original)
+++ db/jdo/branches/2.0/tck20/src/jdo/datastoreidentity/org/apache/jdo/tck/pc/company/package.jdo Fri Mar 31 17:34:00 2006
@@ -129,7 +129,7 @@
         <interface name="IEmployee"
             identity-type="datastore">
             <property name="reviewedProjects" persistence-modifier="persistent">
-                <collection element-type="org.apache.jdo.tck.pc.company.Project"/>
+                <collection element-type="org.apache.jdo.tck.pc.company.IProject"/>
             </property>
             <property name="projects" persistence-modifier="persistent">
                 <collection element-type="org.apache.jdo.tck.pc.company.IProject"/>
@@ -181,7 +181,7 @@
             </query>
             <query name="unmodifiable" unmodifiable="true">
                 SELECT firstname, lastname 
-                FROM org.apache.jdo.tck.pc.company.Person
+                FROM org.apache.jdo.tck.pc.company.IPerson
             </query>
             <query name="packageJDO">
                 SELECT FROM org.apache.jdo.tck.pc.company.IPerson

Modified: db/jdo/trunk/tck20/src/jdo/applicationidentity/org/apache/jdo/tck/pc/company/package.jdo
URL: http://svn.apache.org/viewcvs/db/jdo/trunk/tck20/src/jdo/applicationidentity/org/apache/jdo/tck/pc/company/package.jdo?rev=390564&r1=390563&r2=390564&view=diff
==============================================================================
--- db/jdo/trunk/tck20/src/jdo/applicationidentity/org/apache/jdo/tck/pc/company/package.jdo (original)
+++ db/jdo/trunk/tck20/src/jdo/applicationidentity/org/apache/jdo/tck/pc/company/package.jdo Fri Mar 31 17:34:00 2006
@@ -157,7 +157,7 @@
         <interface name="IEmployee"
             identity-type="application">
             <property name="reviewedProjects" persistence-modifier="persistent">
-                <collection element-type="org.apache.jdo.tck.pc.company.Project"/>
+                <collection element-type="org.apache.jdo.tck.pc.company.IProject"/>
             </property>
             <property name="projects" persistence-modifier="persistent">
                 <collection element-type="org.apache.jdo.tck.pc.company.IProject"/>
@@ -211,7 +211,7 @@
             </query>
             <query name="unmodifiable" unmodifiable="true">
                 SELECT firstname, lastname 
-                FROM org.apache.jdo.tck.pc.company.Person
+                FROM org.apache.jdo.tck.pc.company.IPerson
             </query>
             <query name="packageJDO">
                 SELECT FROM org.apache.jdo.tck.pc.company.IPerson

Modified: db/jdo/trunk/tck20/src/jdo/datastoreidentity/org/apache/jdo/tck/pc/company/package.jdo
URL: http://svn.apache.org/viewcvs/db/jdo/trunk/tck20/src/jdo/datastoreidentity/org/apache/jdo/tck/pc/company/package.jdo?rev=390564&r1=390563&r2=390564&view=diff
==============================================================================
--- db/jdo/trunk/tck20/src/jdo/datastoreidentity/org/apache/jdo/tck/pc/company/package.jdo (original)
+++ db/jdo/trunk/tck20/src/jdo/datastoreidentity/org/apache/jdo/tck/pc/company/package.jdo Fri Mar 31 17:34:00 2006
@@ -129,7 +129,7 @@
         <interface name="IEmployee"
             identity-type="datastore">
             <property name="reviewedProjects" persistence-modifier="persistent">
-                <collection element-type="org.apache.jdo.tck.pc.company.Project"/>
+                <collection element-type="org.apache.jdo.tck.pc.company.IProject"/>
             </property>
             <property name="projects" persistence-modifier="persistent">
                 <collection element-type="org.apache.jdo.tck.pc.company.IProject"/>
@@ -181,7 +181,7 @@
             </query>
             <query name="unmodifiable" unmodifiable="true">
                 SELECT firstname, lastname 
-                FROM org.apache.jdo.tck.pc.company.Person
+                FROM org.apache.jdo.tck.pc.company.IPerson
             </query>
             <query name="packageJDO">
                 SELECT FROM org.apache.jdo.tck.pc.company.IPerson