User: starksm 
  Date: 01/05/09 21:19:13

  Modified:    src/resources/org/jboss/metadata jboss-web.dtd
  Log:
  Add a security-domain element
  
  Revision  Changes    Path
  1.2       +23 -1     jboss/src/resources/org/jboss/metadata/jboss-web.dtd
  
  Index: jboss-web.dtd
  ===================================================================
  RCS file: /cvsroot/jboss/jboss/src/resources/org/jboss/metadata/jboss-web.dtd,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- jboss-web.dtd     2001/05/09 07:14:21     1.1
  +++ jboss-web.dtd     2001/05/10 04:19:13     1.2
  @@ -5,12 +5,34 @@
   -->
   <!-- The jboss-web element is the root element.
   -->
  -<!ELEMENT jboss-web (resource-ref* , ejb-ref*)>
  +<!ELEMENT jboss-web (security-domain?, resource-ref* , ejb-ref*)>
   
  +<!-- The security-domain element allows one to specify a module wide
  +security manager domain. It specifies the JNDI name of the security
  +manager that implements the EJBSecurityManager and RealmMapping for
  +the domain.
  +-->
  +<!ELEMENT security-domain (#PCDATA)>
  +
  +<!-- The ejb-ref element maps from the servlet ENC relative name
  +of the ejb reference to the deployment environment JNDI name of
  +the bean.
  +Example:
  +    <ejb-ref>
  +        <ejb-ref-name>ejb/Bean0</ejb-ref-name>
  +        <jndi-name>deployed/ejbs/Bean0</jndi-name>
  +    </ejb-ref>
  +-->
   <!ELEMENT ejb-ref (ejb-ref-name , jndi-name)>
   
  +<!-- The ejb-ref-name element gives the ENC relative name used
  +in the web-app.xml ejb-ref-name element.
  +-->
   <!ELEMENT ejb-ref-name (#PCDATA)>
   
  +<!-- The jndi-name element specifies the JNDI name of the deployed
  +EJB home interface to which the servlet ENC binding will link to.
  +-->
   <!ELEMENT jndi-name (#PCDATA)>
   
   <!ELEMENT resource-ref (res-ref-name , jndi-name)>
  
  
  

_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to