[jboss-cvs] JBossAS SVN: r87287 - branches/Branch_5_x/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:01:11 EDT 2009


Author: scott.stark at jboss.org
Date: 2009-04-14 10:01:11 -0400 (Tue, 14 Apr 2009)
New Revision: 87287

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

Modified: branches/Branch_5_x/connector/src/main/org/jboss/resource/metadata/mcf/ManagedConnectionFactoryDeploymentMetaData.java
===================================================================
--- branches/Branch_5_x/connector/src/main/org/jboss/resource/metadata/mcf/ManagedConnectionFactoryDeploymentMetaData.java	2009-04-14 13:40:19 UTC (rev 87286)
+++ branches/Branch_5_x/connector/src/main/org/jboss/resource/metadata/mcf/ManagedConnectionFactoryDeploymentMetaData.java	2009-04-14 14:01:11 UTC (rev 87287)
@@ -560,7 +560,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());
@@ -573,7 +574,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;
@@ -586,7 +588,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