From: Vance K. <va...@us...> - 2006-01-25 02:54:16
|
User: vancek Date: 06/01/24 18:54:09 Modified: andromda-ejb3/src/main/resources/META-INF/andromda namespace.xml Log: added enumerations outlet, renamed outlet interceptors, added entityDefaultEnumLiteralColumnLength property Revision Changes Path 1.8 +27 -14 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.7 retrieving revision 1.8 diff -u -w -r1.7 -r1.8 --- namespace.xml 18 Jan 2006 08:55:07 -0000 1.7 +++ namespace.xml 25 Jan 2006 02:54:09 -0000 1.8 @@ -71,13 +71,19 @@ implementation files are generated. </documentation> </property> - <property name="interceptor"> + <property name="interceptors"> <documentation> The directory to which interceptor classes for session beans or message driven beans are generated. </documentation> </property> + <property name="enumerations"> + <documentation> + The directory to which entity JDK 1.5 + enumerations are generated. + </documentation> + </property> </propertyGroup> <propertyGroup name="JDBC"> <property name="entityManagerName" required="false"> @@ -530,6 +536,26 @@ always exist. </documentation> </property> + <property name="entityGenericFinders"> + <default>true</default> + <documentation> + Specifies whether to include the generic finder + property. Generic finders in the entity bean include + findByPrimaryKey and findAll. + Permitted values are: + <ul> + <li>true</li> + <li>false</li> + </ul> + </documentation> + </property> + <property name="entityDefaultEnumLiteralColumnLength"> + <default>20</default> + <documentation> + The default column length specified for the + storage of a string based enumeration literal. + </documentation> + </property> <property name="securityRealm" required="false"> <documentation> Specifies the security domain to use @@ -549,19 +575,6 @@ Does not apply to queries written in OCL. </documentation> </property> - <property name="entityGenericFinders"> - <default>true</default> - <documentation> - Specifies whether to include the generic finder - property. Generic finders in the entity bean include - findByPrimaryKey and findAll. - Permitted values are: - <ul> - <li>true</li> - <li>false</li> - </ul> - </documentation> - </property> <property name="valueObjectPackage"> <default>{0}</default> </property> |