[jboss-cvs] JBossAS SVN: r57841 - branches/JEE5_TCK/server/src/resources/dtd

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Oct 26 07:43:12 EDT 2006


Author: wolfc
Date: 2006-10-26 07:43:08 -0400 (Thu, 26 Oct 2006)
New Revision: 57841

Modified:
   branches/JEE5_TCK/server/src/resources/dtd/jboss-client_5_0.dtd
Log:
JBCTS-329: client-app dependencies in xml

Modified: branches/JEE5_TCK/server/src/resources/dtd/jboss-client_5_0.dtd
===================================================================
--- branches/JEE5_TCK/server/src/resources/dtd/jboss-client_5_0.dtd	2006-10-26 11:40:53 UTC (rev 57840)
+++ branches/JEE5_TCK/server/src/resources/dtd/jboss-client_5_0.dtd	2006-10-26 11:43:08 UTC (rev 57841)
@@ -15,7 +15,7 @@
 <!-- The jboss-client element is the root element.
 -->
 <!ELEMENT jboss-client (jndi-name, ejb-ref*, service-ref*, resource-ref*,
- resource-env-ref*)>
+ resource-env-ref*, message-destination-ref*, depends*)>
 
 <!-- The required jndi-name element specifies the JNDI name of a deployed
 object. It is used in two different contexts:
@@ -198,3 +198,25 @@
 <!-- The string value of a property value
 -->
 <!ELEMENT prop-value (#PCDATA)>
+
+<!-- message-destination-ref is used to directly bind a message destination reference
+to the JNDI name of a Queue, Topic, or some other physical destination. It should
+only be used when the corresponding message destination reference does not
+specify a message-destination-link to a logical message-destination.
+Example:
+    <message-destination-ref>
+        <message-destination-ref-name>MyQueue</message-destination-ref-name>
+        <jndi-name>queue/GlobalQueue</jndi-name>
+    </service-ref>
+-->
+<!ELEMENT message-destination-ref (message-destination-ref-name, jndi-name)>
+
+<!-- The message-destination-ref-name specifies the name of the application-client.xml
+message-destination-ref-name element to which this mapping applies.
+-->
+<!ELEMENT message-destination-ref-name (#PCDATA)>
+
+<!-- The depends element gives a JMX ObjectName of a service on which the
+container depends.
+-->
+<!ELEMENT depends (#PCDATA)>
\ No newline at end of file




More information about the jboss-cvs-commits mailing list