From: Vance K. <va...@us...> - 2006-01-10 08:14:18
|
User: vancek Date: 06/01/10 00:14:12 Modified: andromda-ejb3/src/main/resources/META-INF/andromda namespace.xml metafacades.xml Log: added service delegate and locator related properties Revision Changes Path 1.5 +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.4 retrieving revision 1.5 diff -u -w -r1.4 -r1.5 --- namespace.xml 6 Jan 2006 13:53:27 -0000 1.4 +++ namespace.xml 10 Jan 2006 08:14:12 -0000 1.5 @@ -18,6 +18,12 @@ <documentation> Defines the locations to which output is generated. </documentation> + <property name="services"> + <documentation> + The location to which all service classes (including the service locator(s)) + will be generated. + </documentation> + </property> <property name="entity-beans"> <documentation> The directory to which Entity POJOs are generated. @@ -199,6 +205,13 @@ bean listener class name. </documentation> </property> + <property name="serviceDelegateNamePattern"> + <default>{0}Delegate</default> + <documentation> + The pattern to use when constructing the service + bean delegate class name. + </documentation> + </property> <property name="messageDrivenNamePattern"> <default>{0}MDBBean</default> <documentation> @@ -485,6 +498,18 @@ tagged value. </documentation> </property> + <property name="serviceLocatorName"> + <default>ServiceLocator</default> + <documentation> + The name to give the service locator class. + </documentation> + </property> + <property name="ejb3TypesPackage"> + <default>org.andromda.ejb3</default> + <documentation> + The package to which extra types are generated (i.e. ServiceLocator). + </documentation> + </property> </propertyGroup> </properties> </namespace> \ No newline at end of file 1.4 +1 -0 cartridges/andromda-ejb3/src/main/resources/META-INF/andromda/metafacades.xml Index: metafacades.xml =================================================================== RCS file: /cvsroot/andromdaplugins/cartridges/andromda-ejb3/src/main/resources/META-INF/andromda/metafacades.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -u -w -r1.3 -r1.4 --- metafacades.xml 6 Jan 2006 13:52:43 -0000 1.3 +++ metafacades.xml 10 Jan 2006 08:14:12 -0000 1.4 @@ -98,6 +98,7 @@ <property reference="serviceRemoteInterfaceName" /> <property reference="serviceImplementationNamePattern" /> <property reference="serviceListenerNamePattern" /> + <property reference="serviceDelegateNamePattern" /> </metafacade> <metafacade class="org.andromda.cartridges.ejb3.metafacades.EJB3SessionAttributeFacadeLogicImpl"> <mapping> |
From: Vance K. <va...@us...> - 2006-02-01 08:39:50
|
User: vancek Date: 06/02/01 00:39:45 Modified: andromda-ejb3/src/main/resources/META-INF/andromda namespace.xml metafacades.xml Log: added compositionDefinesEgagerLoading propery/namespace Revision Changes Path 1.11 +7 -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.10 retrieving revision 1.11 diff -u -w -r1.10 -r1.11 --- namespace.xml 28 Jan 2006 03:10:37 -0000 1.10 +++ namespace.xml 1 Feb 2006 08:39:45 -0000 1.11 @@ -615,6 +615,13 @@ Used to define the default mapping for EJB3 collections. </documentation> </property> + <property name="compositionDefinesEagerLoading"> + <default>true</default> + <documentation> + Allows you to turn on/off whether or not composite associations will define eager loading + and aggregate associations define lazy loading. + </documentation> + </property> <property name="securityRealm" required="false"> <documentation> Specifies the security domain to use 1.10 +38 -37 cartridges/andromda-ejb3/src/main/resources/META-INF/andromda/metafacades.xml Index: metafacades.xml =================================================================== RCS file: /cvsroot/andromdaplugins/cartridges/andromda-ejb3/src/main/resources/META-INF/andromda/metafacades.xml,v retrieving revision 1.9 retrieving revision 1.10 diff -u -w -r1.9 -r1.10 --- metafacades.xml 28 Jan 2006 03:04:40 -0000 1.9 +++ metafacades.xml 1 Feb 2006 08:39:45 -0000 1.10 @@ -19,6 +19,7 @@ <property reference="persistenceContextUnitName" /> <property reference="securityRealm" /> <property reference="allowDefaultServiceException"/> + <property reference="compositionDefinesEagerLoading"/> <!-- Entity EJB Metafacades --> <metafacade class="org.andromda.cartridges.ejb3.metafacades.EJB3OperationFacadeLogicImpl"> <mapping> |