From: Vance K. <va...@us...> - 2006-07-24 06:20:52
|
User: vancek Date: 06/07/23 23:20:50 Modified: andromda-ejb3/src/main/resources/META-INF/andromda namespace.xml andromda-ejb3/src/changes changes.xml Log: set defaultCollectionInterface to java.util.Set (from java.util.TreeSet) Revision Changes Path 1.29 +1 -1 cartridges/andromda-ejb3/src/main/resources/META-INF/andromda/namespace.xml Index: namespace.xml =================================================================== RCS file: /cvsroot/andromdaplugins/cartridges/andromda-ejb3/src/main/resources/META-INF/andromda/namespace.xml,v retrieving revision 1.28 retrieving revision 1.29 diff -u -w -r1.28 -r1.29 --- namespace.xml 22 Jul 2006 06:30:10 -0000 1.28 +++ namespace.xml 24 Jul 2006 06:20:49 -0000 1.29 @@ -1022,7 +1022,7 @@ </documentation> </property> <property name="defaultCollectionInterface"> - <default>java.util.TreeSet</default> + <default>java.util.Set</default> <documentation> The default collection interface, this is the interface used with association end accessors and mutators if the 1.23 +4 -0 cartridges/andromda-ejb3/src/changes/changes.xml Index: changes.xml =================================================================== RCS file: /cvsroot/andromdaplugins/cartridges/andromda-ejb3/src/changes/changes.xml,v retrieving revision 1.22 retrieving revision 1.23 diff -u -w -r1.22 -r1.23 --- changes.xml 22 Jul 2006 06:30:10 -0000 1.22 +++ changes.xml 24 Jul 2006 06:20:50 -0000 1.23 @@ -250,6 +250,10 @@ java.util.SortedSet. This eliminates the need for the @org.hibernate.annotations.Sort annotation on collection association ends. Aim is to decouple the EJB3 cartridge (with default settings) to Hibernate. </action> + <action dev="vancek" type="fix"> + It is invalid to specify an implementation for defaultCollectionInterfac. This must specify an + interface. Changed from java.util.TreeSet to java.util.Set. + </action> </release> </body> </document> \ No newline at end of file |