[jboss-cvs] JBossAS SVN: r67087 - projects/metadata/trunk/src/main/resources/dtd.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed Nov 14 13:43:07 EST 2007


Author: bstansberry at jboss.com
Date: 2007-11-14 13:43:07 -0500 (Wed, 14 Nov 2007)
New Revision: 67087

Modified:
   projects/metadata/trunk/src/main/resources/dtd/jboss_3_0.dtd
   projects/metadata/trunk/src/main/resources/dtd/jboss_3_2.dtd
   projects/metadata/trunk/src/main/resources/dtd/jboss_4_0.dtd
   projects/metadata/trunk/src/main/resources/dtd/jboss_4_2.dtd
   projects/metadata/trunk/src/main/resources/dtd/jboss_5_0.dtd
Log:
Fix comments re: clustering properties

Modified: projects/metadata/trunk/src/main/resources/dtd/jboss_3_0.dtd
===================================================================
--- projects/metadata/trunk/src/main/resources/dtd/jboss_3_0.dtd	2007-11-14 18:28:19 UTC (rev 67086)
+++ projects/metadata/trunk/src/main/resources/dtd/jboss_3_0.dtd	2007-11-14 18:43:07 UTC (rev 67087)
@@ -360,40 +360,59 @@
 <!--
   The partition-name element indicates the name of the HAPartition to be used
   by the container to exchange clustering information. This is a name and *not*
-  a JNDI name. Given name will be prefixed by "/HASessionState/" by the container to get
-  the actual JNDI name of the HAPartition. If not, jboss will assume partition-name = "DefaultPartition".
+  a JNDI name. Given name will be prefixed by "/HAPartition/" by the container to get
+  the actual JNDI name of the HAPartition. 
   
-  Used in: entity and session (in clustered-config element)
+  Must be set; there is no hard coded default. Can be set either in a bean's own 
+  cluster-config element or in a container-configuration used by the bean.
+  The standard clustered bean container configurations in conf/standardjboss.xml
+  set this to the value of system property "jboss.partition.name", or 
+  "DefaultPartition" if that property is not set.
+
+  Used in: entity, session and container-configuration (in clustered-config element)
 -->
 <!ELEMENT partition-name (#PCDATA)>
 
 <!--
   The home-load-balance-policy element indicates the java class name to be used
-  to load balance calls in the home proxy.
-  If not, jboss will assume home-load-balance-policy = "org.jboss.ha.framework.interfaces.RoundRobin".
+  to load balance calls in the home proxy. 
   
-  Used in: entity and session (in clustered-config element)
+  Must be set; there is no hard coded default. Can be set either in a bean's own 
+  cluster-config element or in a container-configuration used by the bean.
+  The standard clustered bean container configurations in conf/standardjboss.xml
+  set this to "org.jboss.ha.framework.interfaces.RoundRobin".
+
+  Used in: entity, session and container-configuration (in cluster-config element)
 -->
 <!ELEMENT home-load-balance-policy (#PCDATA)>
 
 <!--
   The bean-load-balance-policy element indicates the java class name to be used
-  to load balance calls in the bean proxy.
-  If not, jboss will assume :
-    - for EB and SFSB : bean-load-balance-policy = "org.jboss.ha.framework.interfaces.RoundRobin"
-    - for SLSB        : bean-load-balance-policy = "org.jboss.ha.framework.interfaces.RoundRobin"
+  to load balance calls in an EJB2 bean proxy. 
   
-  Used in: entity and session (in clustered-config element)
+  Must be set; there is no hard coded default. Can be set either in a bean's own 
+  cluster-config element or in a container-configuration used by the bean.
+  The standard clustered bean container configurations in conf/standardjboss.xml
+  set this to "org.jboss.ha.framework.interfaces.RoundRobin" for SLSBs and to
+  "org.jboss.ha.framework.interfaces.FirstAvailable" for EB and SFSBs.
+
+  Used in: entity, session and container-configuration (in cluster-config element)
 -->
 <!ELEMENT bean-load-balance-policy (#PCDATA)>
 
 <!--
-  The session-state-manager-jndi-name element indicates the name of the HASessionState to be used
-  by the container as a backend for state session management in the cluster.
-  This *is* a JNDI name (not like the partition-name element).
-  If not, jboss will assume partition-name = "/HASessionState/Default".
+  The session-state-manager-jndi-name element indicates the name of the 
+  HASessionState to be used by the container as a backend for EJB2 stateful 
+  session bean management in the cluster. This *is* a JNDI name (unlike the 
+  partition-name element). 
   
-  Used in: session (in clustered-config element)
+  Must be set; there is no hard coded default. Can be set either in a bean's own 
+  cluster-config element or in a container-configuration used by the bean.
+  The standard clustered bean container configurations in conf/standardjboss.xml
+  set this to "/HASessionState/" plus the value of system property 
+  "jboss.partition.name", or "DefaultPartition" if that property is not set.
+
+  Used in: session or container-configuration (in cluster-config element)
 -->
 <!ELEMENT session-state-manager-jndi-name (#PCDATA)>
 

Modified: projects/metadata/trunk/src/main/resources/dtd/jboss_3_2.dtd
===================================================================
--- projects/metadata/trunk/src/main/resources/dtd/jboss_3_2.dtd	2007-11-14 18:28:19 UTC (rev 67086)
+++ projects/metadata/trunk/src/main/resources/dtd/jboss_3_2.dtd	2007-11-14 18:43:07 UTC (rev 67087)
@@ -593,30 +593,43 @@
 <!--
   The partition-name element indicates the name of the HAPartition to be used
   by the container to exchange clustering information. This is a name and *not*
-  a JNDI name. Given name will be prefixed by "/HASessionState/" by the container to get
-  the actual JNDI name of the HAPartition. If not, jboss will assume partition-name = "DefaultPartition".
+  a JNDI name. Given name will be prefixed by "/HAPartition/" by the container to get
+  the actual JNDI name of the HAPartition. 
+  
+  Must be set; there is no hard coded default. Can be set either in a bean's own 
+  cluster-config element or in a container-configuration used by the bean.
+  The standard clustered bean container configurations in conf/standardjboss.xml
+  set this to the value of system property "jboss.partition.name", or 
+  "DefaultPartition" if that property is not set.
 
-  Used in: entity and session (in clustered-config element)
+  Used in: entity, session and container-configuration (in clustered-config element)
 -->
 <!ELEMENT partition-name (#PCDATA)>
 
 <!--
   The home-load-balance-policy element indicates the java class name to be used
-  to load balance calls in the home proxy.
-  If not, jboss will assume home-load-balance-policy = "org.jboss.ha.framework.interfaces.RoundRobin".
+  to load balance calls in the home proxy. 
+  
+  Must be set; there is no hard coded default. Can be set either in a bean's own 
+  cluster-config element or in a container-configuration used by the bean.
+  The standard clustered bean container configurations in conf/standardjboss.xml
+  set this to "org.jboss.ha.framework.interfaces.RoundRobin".
 
-  Used in: entity and session (in clustered-config element)
+  Used in: entity, session and container-configuration (in cluster-config element)
 -->
 <!ELEMENT home-load-balance-policy (#PCDATA)>
 
 <!--
   The bean-load-balance-policy element indicates the java class name to be used
-  to load balance calls in the bean proxy.
-  If not, jboss will assume :
-    - for EB and SFSB : bean-load-balance-policy = "org.jboss.ha.framework.interfaces.RoundRobin"
-    - for SLSB        : bean-load-balance-policy = "org.jboss.ha.framework.interfaces.RoundRobin"
+  to load balance calls in an EJB2 bean proxy. 
+  
+  Must be set; there is no hard coded default. Can be set either in a bean's own 
+  cluster-config element or in a container-configuration used by the bean.
+  The standard clustered bean container configurations in conf/standardjboss.xml
+  set this to "org.jboss.ha.framework.interfaces.RoundRobin" for SLSBs and to
+  "org.jboss.ha.framework.interfaces.FirstAvailable" for EB and SFSBs.
 
-  Used in: entity and session (in clustered-config element)
+  Used in: entity, session and container-configuration (in cluster-config element)
 -->
 <!ELEMENT bean-load-balance-policy (#PCDATA)>
 
@@ -664,12 +677,18 @@
 <!ELEMENT invalidation-manager-name (#PCDATA)>
 
 <!--
-  The session-state-manager-jndi-name element indicates the name of the HASessionState to be used
-  by the container as a backend for state session management in the cluster.
-  This *is* a JNDI name (not like the partition-name element).
-  If not, jboss will assume partition-name = "/HASessionState/Default".
+  The session-state-manager-jndi-name element indicates the name of the 
+  HASessionState to be used by the container as a backend for EJB2 stateful 
+  session bean management in the cluster. This *is* a JNDI name (unlike the 
+  partition-name element). 
+  
+  Must be set; there is no hard coded default. Can be set either in a bean's own 
+  cluster-config element or in a container-configuration used by the bean.
+  The standard clustered bean container configurations in conf/standardjboss.xml
+  set this to "/HASessionState/" plus the value of system property 
+  "jboss.partition.name", or "DefaultPartition" if that property is not set.
 
-  Used in: session (in clustered-config element)
+  Used in: session or container-configuration (in cluster-config element)
 -->
 <!ELEMENT session-state-manager-jndi-name (#PCDATA)>
 

Modified: projects/metadata/trunk/src/main/resources/dtd/jboss_4_0.dtd
===================================================================
--- projects/metadata/trunk/src/main/resources/dtd/jboss_4_0.dtd	2007-11-14 18:28:19 UTC (rev 67086)
+++ projects/metadata/trunk/src/main/resources/dtd/jboss_4_0.dtd	2007-11-14 18:43:07 UTC (rev 67087)
@@ -792,30 +792,43 @@
 <!--
   The partition-name element indicates the name of the HAPartition to be used
   by the container to exchange clustering information. This is a name and *not*
-  a JNDI name. Given name will be prefixed by "/HASessionState/" by the container to get
-  the actual JNDI name of the HAPartition. If not, jboss will assume partition-name = "DefaultPartition".
+  a JNDI name. Given name will be prefixed by "/HAPartition/" by the container to get
+  the actual JNDI name of the HAPartition. 
+  
+  Must be set; there is no hard coded default. Can be set either in a bean's own 
+  cluster-config element or in a container-configuration used by the bean.
+  The standard clustered bean container configurations in conf/standardjboss.xml
+  set this to the value of system property "jboss.partition.name", or 
+  "DefaultPartition" if that property is not set.
 
-  Used in: entity and session (in clustered-config element)
+  Used in: entity, session and container-configuration (in clustered-config element)
 -->
 <!ELEMENT partition-name (#PCDATA)>
 
 <!--
   The home-load-balance-policy element indicates the java class name to be used
-  to load balance calls in the home proxy.
-  If not, jboss will assume home-load-balance-policy = "org.jboss.ha.framework.interfaces.RoundRobin".
+  to load balance calls in the home proxy. 
+  
+  Must be set; there is no hard coded default. Can be set either in a bean's own 
+  cluster-config element or in a container-configuration used by the bean.
+  The standard clustered bean container configurations in conf/standardjboss.xml
+  set this to "org.jboss.ha.framework.interfaces.RoundRobin".
 
-  Used in: entity and session (in clustered-config element)
+  Used in: entity, session and container-configuration (in cluster-config element)
 -->
 <!ELEMENT home-load-balance-policy (#PCDATA)>
 
 <!--
   The bean-load-balance-policy element indicates the java class name to be used
-  to load balance calls in the bean proxy.
-  If not, jboss will assume :
-    - for EB and SFSB : bean-load-balance-policy = "org.jboss.ha.framework.interfaces.RoundRobin"
-    - for SLSB        : bean-load-balance-policy = "org.jboss.ha.framework.interfaces.RoundRobin"
+  to load balance calls in an EJB2 bean proxy. 
+  
+  Must be set; there is no hard coded default. Can be set either in a bean's own 
+  cluster-config element or in a container-configuration used by the bean.
+  The standard clustered bean container configurations in conf/standardjboss.xml
+  set this to "org.jboss.ha.framework.interfaces.RoundRobin" for SLSBs and to
+  "org.jboss.ha.framework.interfaces.FirstAvailable" for EB and SFSBs.
 
-  Used in: entity and session (in clustered-config element)
+  Used in: entity, session and container-configuration (in cluster-config element)
 -->
 <!ELEMENT bean-load-balance-policy (#PCDATA)>
 
@@ -863,12 +876,18 @@
 <!ELEMENT invalidation-manager-name (#PCDATA)>
 
 <!--
-  The session-state-manager-jndi-name element indicates the name of the HASessionState to be used
-  by the container as a backend for state session management in the cluster.
-  This *is* a JNDI name (not like the partition-name element).
-  If not, jboss will assume partition-name = "/HASessionState/Default".
+  The session-state-manager-jndi-name element indicates the name of the 
+  HASessionState to be used by the container as a backend for EJB2 stateful 
+  session bean management in the cluster. This *is* a JNDI name (unlike the 
+  partition-name element). 
+  
+  Must be set; there is no hard coded default. Can be set either in a bean's own 
+  cluster-config element or in a container-configuration used by the bean.
+  The standard clustered bean container configurations in conf/standardjboss.xml
+  set this to "/HASessionState/" plus the value of system property 
+  "jboss.partition.name", or "DefaultPartition" if that property is not set.
 
-  Used in: session (in clustered-config element)
+  Used in: session or container-configuration (in cluster-config element)
 -->
 <!ELEMENT session-state-manager-jndi-name (#PCDATA)>
 

Modified: projects/metadata/trunk/src/main/resources/dtd/jboss_4_2.dtd
===================================================================
--- projects/metadata/trunk/src/main/resources/dtd/jboss_4_2.dtd	2007-11-14 18:28:19 UTC (rev 67086)
+++ projects/metadata/trunk/src/main/resources/dtd/jboss_4_2.dtd	2007-11-14 18:43:07 UTC (rev 67087)
@@ -790,33 +790,46 @@
 <!ELEMENT cluster-config (partition-name? , home-load-balance-policy? ,
  bean-load-balance-policy? , session-state-manager-jndi-name?)>
 
-<!--
-  The partition-name element indicates the name of the HAPartition to be used
-  by the container to exchange clustering information. This is a name and *not*
-  a JNDI name. Given name will be prefixed by "/HASessionState/" by the container to get
-  the actual JNDI name of the HAPartition. If not, jboss will assume partition-name = "DefaultPartition".
-
-  Used in: entity and session (in clustered-config element)
+<!--
+  The partition-name element indicates the name of the HAPartition to be used
+  by the container to exchange clustering information. This is a name and *not*
+  a JNDI name. Given name will be prefixed by "/HAPartition/" by the container to get
+  the actual JNDI name of the HAPartition. 
+  
+  Must be set; there is no hard coded default. Can be set either in a bean's own 
+  cluster-config element or in a container-configuration used by the bean.
+  The standard clustered bean container configurations in conf/standardjboss.xml
+  set this to the value of system property "jboss.partition.name", or 
+  "DefaultPartition" if that property is not set.
+
+  Used in: entity, session and container-configuration (in clustered-config element)
 -->
 <!ELEMENT partition-name (#PCDATA)>
 
-<!--
-  The home-load-balance-policy element indicates the java class name to be used
-  to load balance calls in the home proxy.
-  If not, jboss will assume home-load-balance-policy = "org.jboss.ha.framework.interfaces.RoundRobin".
-
-  Used in: entity and session (in clustered-config element)
+<!--
+  The home-load-balance-policy element indicates the java class name to be used
+  to load balance calls in the home proxy. 
+  
+  Must be set; there is no hard coded default. Can be set either in a bean's own 
+  cluster-config element or in a container-configuration used by the bean.
+  The standard clustered bean container configurations in conf/standardjboss.xml
+  set this to "org.jboss.ha.framework.interfaces.RoundRobin".
+
+  Used in: entity, session and container-configuration (in cluster-config element)
 -->
 <!ELEMENT home-load-balance-policy (#PCDATA)>
 
-<!--
-  The bean-load-balance-policy element indicates the java class name to be used
-  to load balance calls in the bean proxy.
-  If not, jboss will assume :
-    - for EB and SFSB : bean-load-balance-policy = "org.jboss.ha.framework.interfaces.RoundRobin"
-    - for SLSB        : bean-load-balance-policy = "org.jboss.ha.framework.interfaces.RoundRobin"
-
-  Used in: entity and session (in clustered-config element)
+<!--
+  The bean-load-balance-policy element indicates the java class name to be used
+  to load balance calls in an EJB2 bean proxy. 
+  
+  Must be set; there is no hard coded default. Can be set either in a bean's own 
+  cluster-config element or in a container-configuration used by the bean.
+  The standard clustered bean container configurations in conf/standardjboss.xml
+  set this to "org.jboss.ha.framework.interfaces.RoundRobin" for SLSBs and to
+  "org.jboss.ha.framework.interfaces.FirstAvailable" for EB and SFSBs.
+
+  Used in: entity, session and container-configuration (in cluster-config element)
 -->
 <!ELEMENT bean-load-balance-policy (#PCDATA)>
 
@@ -863,13 +876,19 @@
 -->
 <!ELEMENT invalidation-manager-name (#PCDATA)>
 
-<!--
-  The session-state-manager-jndi-name element indicates the name of the HASessionState to be used
-  by the container as a backend for state session management in the cluster.
-  This *is* a JNDI name (not like the partition-name element).
-  If not, jboss will assume partition-name = "/HASessionState/Default".
-
-  Used in: session (in clustered-config element)
+<!--
+  The session-state-manager-jndi-name element indicates the name of the 
+  HASessionState to be used by the container as a backend for EJB2 stateful 
+  session bean management in the cluster. This *is* a JNDI name (unlike the 
+  partition-name element). 
+  
+  Must be set; there is no hard coded default. Can be set either in a bean's own 
+  cluster-config element or in a container-configuration used by the bean.
+  The standard clustered bean container configurations in conf/standardjboss.xml
+  set this to "/HASessionState/" plus the value of system property 
+  "jboss.partition.name", or "DefaultPartition" if that property is not set.
+
+  Used in: session or container-configuration (in cluster-config element)
 -->
 <!ELEMENT session-state-manager-jndi-name (#PCDATA)>
 

Modified: projects/metadata/trunk/src/main/resources/dtd/jboss_5_0.dtd
===================================================================
--- projects/metadata/trunk/src/main/resources/dtd/jboss_5_0.dtd	2007-11-14 18:28:19 UTC (rev 67086)
+++ projects/metadata/trunk/src/main/resources/dtd/jboss_5_0.dtd	2007-11-14 18:43:07 UTC (rev 67087)
@@ -795,30 +795,43 @@
 <!--
   The partition-name element indicates the name of the HAPartition to be used
   by the container to exchange clustering information. This is a name and *not*
-  a JNDI name. Given name will be prefixed by "/HASessionState/" by the container to get
-  the actual JNDI name of the HAPartition. If not, jboss will assume partition-name = "DefaultPartition".
+  a JNDI name. Given name will be prefixed by "/HAPartition/" by the container to get
+  the actual JNDI name of the HAPartition. 
+  
+  Must be set; there is no hard coded default. Can be set either in a bean's own 
+  cluster-config element or in a container-configuration used by the bean.
+  The standard clustered bean container configurations in conf/standardjboss.xml
+  set this to the value of system property "jboss.partition.name", or 
+  "DefaultPartition" if that property is not set.
 
-  Used in: entity and session (in clustered-config element)
+  Used in: entity, session and container-configuration (in clustered-config element)
 -->
 <!ELEMENT partition-name (#PCDATA)>
 
 <!--
   The home-load-balance-policy element indicates the java class name to be used
-  to load balance calls in the home proxy.
-  If not, jboss will assume home-load-balance-policy = "org.jboss.ha.framework.interfaces.RoundRobin".
+  to load balance calls in the home proxy. 
+  
+  Must be set; there is no hard coded default. Can be set either in a bean's own 
+  cluster-config element or in a container-configuration used by the bean.
+  The standard clustered bean container configurations in conf/standardjboss.xml
+  set this to "org.jboss.ha.framework.interfaces.RoundRobin".
 
-  Used in: entity and session (in clustered-config element)
+  Used in: entity, session and container-configuration (in cluster-config element)
 -->
 <!ELEMENT home-load-balance-policy (#PCDATA)>
 
 <!--
   The bean-load-balance-policy element indicates the java class name to be used
-  to load balance calls in the bean proxy.
-  If not, jboss will assume :
-    - for EB and SFSB : bean-load-balance-policy = "org.jboss.ha.framework.interfaces.RoundRobin"
-    - for SLSB        : bean-load-balance-policy = "org.jboss.ha.framework.interfaces.RoundRobin"
+  to load balance calls in an EJB2 bean proxy. 
+  
+  Must be set; there is no hard coded default. Can be set either in a bean's own 
+  cluster-config element or in a container-configuration used by the bean.
+  The standard clustered bean container configurations in conf/standardjboss.xml
+  set this to "org.jboss.ha.framework.interfaces.RoundRobin" for SLSBs and to
+  "org.jboss.ha.framework.interfaces.FirstAvailable" for EB and SFSBs.
 
-  Used in: entity and session (in clustered-config element)
+  Used in: entity, session and container-configuration (in cluster-config element)
 -->
 <!ELEMENT bean-load-balance-policy (#PCDATA)>
 
@@ -866,12 +879,18 @@
 <!ELEMENT invalidation-manager-name (#PCDATA)>
 
 <!--
-  The session-state-manager-jndi-name element indicates the name of the HASessionState to be used
-  by the container as a backend for state session management in the cluster.
-  This *is* a JNDI name (not like the partition-name element).
-  If not, jboss will assume partition-name = "/HASessionState/Default".
+  The session-state-manager-jndi-name element indicates the name of the 
+  HASessionState to be used by the container as a backend for EJB2 stateful 
+  session bean management in the cluster. This *is* a JNDI name (unlike the 
+  partition-name element). 
+  
+  Must be set; there is no hard coded default. Can be set either in a bean's own 
+  cluster-config element or in a container-configuration used by the bean.
+  The standard clustered bean container configurations in conf/standardjboss.xml
+  set this to "/HASessionState/" plus the value of system property 
+  "jboss.partition.name", or "DefaultPartition" if that property is not set.
 
-  Used in: session (in clustered-config element)
+  Used in: session or container-configuration (in cluster-config element)
 -->
 <!ELEMENT session-state-manager-jndi-name (#PCDATA)>
 




More information about the jboss-cvs-commits mailing list