From: Vance K. <va...@us...> - 2006-07-22 06:30:12
|
User: vancek Date: 06/07/21 23:30:10 Modified: andromda-ejb3/src/main/resources/META-INF/andromda namespace.xml andromda-ejb3/src/changes changes.xml Log: set defaultCollectionInterface namespace prop to java.util.TreeSet from java.util.SortedSet. Revision Changes Path 1.28 +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.27 retrieving revision 1.28 diff -u -w -r1.27 -r1.28 --- namespace.xml 15 Jul 2006 05:08:59 -0000 1.27 +++ namespace.xml 22 Jul 2006 06:30:10 -0000 1.28 @@ -1022,7 +1022,7 @@ </documentation> </property> <property name="defaultCollectionInterface"> - <default>java.util.SortedSet</default> + <default>java.util.TreeSet</default> <documentation> The default collection interface, this is the interface used with association end accessors and mutators if the 1.22 +5 -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.21 retrieving revision 1.22 diff -u -w -r1.21 -r1.22 --- changes.xml 22 Jul 2006 06:24:06 -0000 1.21 +++ changes.xml 22 Jul 2006 06:30:10 -0000 1.22 @@ -245,6 +245,11 @@ <action dev="vancek" due-to="sverker" type="update"> JIRA EJB-39 - Add serialVersionUID to DaoDefaultException. </action> + <action dev="vancek" due-to="KnisterPeter" type="update"> + Changed defaultCollectionInterface namespace property to java.util.TreeSet from + 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> </release> </body> </document> \ No newline at end of file |