From: Vance K. <va...@us...> - 2006-01-03 01:13:11
|
User: vancek Date: 06/01/02 17:13:04 Modified: andromda-ejb3/src/main/resources/META-INF/andromda namespace.xml Log: added container and security properties, entity/service properties and fixed transaction type property values Revision Changes Path 1.2 +52 -7 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.1 retrieving revision 1.2 diff -u -w -r1.1 -r1.2 --- namespace.xml 28 Dec 2005 00:32:56 -0000 1.1 +++ namespace.xml 3 Jan 2006 01:13:03 -0000 1.2 @@ -125,6 +125,19 @@ </property> </propertyGroup> <propertyGroup name="Other Properties"> + <property name="persistenceContainerName"> + <default>jboss</default> + <documentation> + The default persistence container engine name. + Used when specifying specific annotations + for different persistence containers. + Possible values are: + <ul> + <li>jboss</li> + <li>weblogic</li> + </ul> + </documentation> + </property> <property name="entityAccessType"> <default>PROPERTY</default> <documentation> @@ -284,6 +297,14 @@ always exist. </documentation> </property> + <property name="securityDomain"> + <default>Default</default> + <documentation> + Specifies the default security domain to use + for role based authorization. JBoss uses the + security model to match allowed roles. + </documentation> + </property> <property name="queryUseNamedParameters"> <default>true</default> <documentation> @@ -301,18 +322,42 @@ <property name="valueObjectName"> <default>{0}</default> </property> + <property name="entityViewType"> + <default>local</default> + <documentation> + The default view type accessability for an entity POJO bean. + <ul> + Permitted values are: + <li>local</li> + <li>remote</li> + <li>both</li> + </ul> + </documentation> + </property> + <property name="serviceViewType"> + <default>remote</default> + <documentation> + The default view type accessability for a session bean. + <ul> + Permitted values are: + <li>local</li> + <li>remote</li> + <li>both</li> + </ul> + </documentation> + </property> <property name="transactionType"> - <default>Required</default> + <default>REQUIRED</default> <documentation> The default value to use for transaction types. <ul> Permitted values are: - <li>NotSupported</li> - <li>Supports</li> - <li>Required</li> - <li>RequiresNew</li> - <li>Mandatory</li> - <li>Never</li> + <li>NOT_SUPPORTED</li> + <li>SUPPORTS</li> + <li>REQUIRED</li> + <li>REQUIRES_NEW</li> + <li>MANDATORY</li> + <li>NEVER</li> </ul> <strong>NOTE:</strong> Can be overridden on a per entity basis with the |