From: Vance K. <va...@us...> - 2006-01-26 07:01:20
|
User: vancek Date: 06/01/25 23:01:13 Modified: andromda-ejb3/src/main/resources/META-INF/andromda namespace.xml Log: added specificCollectionInterfaces, defaultCollectionInterfaces and associationCollectionType property elements Revision Changes Path 1.9 +25 -0 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.8 retrieving revision 1.9 diff -u -w -r1.8 -r1.9 --- namespace.xml 25 Jan 2006 02:54:09 -0000 1.8 +++ namespace.xml 26 Jan 2006 07:01:12 -0000 1.9 @@ -556,6 +556,31 @@ storage of a string based enumeration literal. </documentation> </property> + <property name="specificCollectionInterfaces"> + <default>false</default> + <documentation> + A flag indicating whether or not specific collection interfaces will be used + in association end mutators and accessors (i.e. java.util.Set, java.util.List, etc). + If this is set to false, then the value of the + <a href="#defaultCollectionInterface">defaultCollectionInterface</a> + property will used to provide the collection interface. + </documentation> + </property> + <property name="defaultCollectionInterface"> + <default>java.util.Collection</default> + <documentation> + The default collection interface, this is the interface used with association end + accessors and mutators if the + <a href="#specificCollectionInterfaces">specificCollectionInterfaces</a> + flag is set to <code>false</code>. + </documentation> + </property> + <property name="associationCollectionType"> + <default>set</default> + <documentation> + Used to define the default mapping for EJB3 collections. + </documentation> + </property> <property name="securityRealm" required="false"> <documentation> Specifies the security domain to use |