[jboss-cvs] JBossAS SVN: r87290 - trunk/connector/src/main/org/jboss/resource/metadata/mcf.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Apr 14 10:39:25 EDT 2009


Author: scott.stark at jboss.org
Date: 2009-04-14 10:39:25 -0400 (Tue, 14 Apr 2009)
New Revision: 87290

Modified:
   trunk/connector/src/main/org/jboss/resource/metadata/mcf/ManagedConnectionFactoryDeploymentMetaData.java
Log:
JBAS-6769, set interleaving use


Modified: trunk/connector/src/main/org/jboss/resource/metadata/mcf/ManagedConnectionFactoryDeploymentMetaData.java
===================================================================
--- trunk/connector/src/main/org/jboss/resource/metadata/mcf/ManagedConnectionFactoryDeploymentMetaData.java	2009-04-14 14:05:49 UTC (rev 87289)
+++ trunk/connector/src/main/org/jboss/resource/metadata/mcf/ManagedConnectionFactoryDeploymentMetaData.java	2009-04-14 14:39:25 UTC (rev 87290)
@@ -561,7 +561,8 @@
       setInterleaving(!Boolean.TRUE.equals(trackConnectionByTransaction));
    }
 
-   @ManagementProperty(name="interleaving", includeInTemplate=true)
+   @ManagementProperty(name="interleaving", includeInTemplate=true,
+         use={ViewUse.CONFIGURATION})
    public Boolean isInterleaving()
    {
       return interleaving == Boolean.TRUE && !Boolean.TRUE.equals(getLocalTransactions());
@@ -574,7 +575,8 @@
 
    @ManagementProperty(name="allocation-retry",
          description="The number of times allocation retries should be tried",
-         includeInTemplate=true)
+         includeInTemplate=true,
+         use={ViewUse.CONFIGURATION})
    public int getAllocationRetry()
    {
       return this.allocationRetry;
@@ -587,7 +589,8 @@
    
    @ManagementProperty(name="allocation-retry-wait-millis",
          description="The time to wait between allocation retries",
-         includeInTemplate=true)
+         includeInTemplate=true,
+         use={ViewUse.CONFIGURATION})
    public long getAllocationRetryWaitMillis()
    {
       return this.allocationRetryWaitMillis;




More information about the jboss-cvs-commits mailing list