User: stark
Date: 01/01/21 00:47:08
Modified: documentation jboss.dtd
Log:
Add the role-mapping-manager and authentication-module elements to the
container-configuration element model.
Revision Changes Path
1.3 +23 -1 newsite/documentation/jboss.dtd
Index: jboss.dtd
===================================================================
RCS file: /products/cvs/ejboss/newsite/documentation/jboss.dtd,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- jboss.dtd 2000/11/14 21:41:34 1.2
+++ jboss.dtd 2001/01/21 08:47:08 1.3
@@ -55,6 +55,9 @@
<container-invoker-conf />
<container-cache-conf />
<container-pool-conf />
+ <commit-option />
+ <role-mapping-manager/>
+ <authentication-module/>
</container-configuration>
</container-configurations>
@@ -335,7 +338,8 @@
<!ELEMENT container-configuration (container-name, call-logging,
container-invoker, instance-pool?, instance-cache?, persistence-manager?,
transaction-manager?, container-invoker-conf?, container-cache-conf?,
- container-pool-conf?, commit-option?)>
+ container-pool-conf?, commit-option?, role-mapping-manager?,
+ authentication-module?)>
<!--
The configuration-class attribute is used to indicate the
@@ -615,3 +619,21 @@
Used in: container-configuration
-->
<!ELEMENT commit-option (#PCDATA)>
+
+ <!--
+ The role-mapping-manager element specifies the JNDI name of the
+ org.jboss.security.RealmMapping implementation that is to be used by the
+ container SecurityInterceptor.
+
+ Used in: container-configuration
+ -->
+ <!ELEMENT role-mapping-manager (#PCDATA)>
+
+ <!--
+ The authentication-module element specifies the JNDI name of the
+ org.jboss.security.EJBSecurityManager implementation that is to be used
+ by the container SecurityInterceptor.
+
+ Used in: container-configuration
+ -->
+ <!ELEMENT authentication-module (#PCDATA)>