[jboss-cvs] JBossAS SVN: r86902 - branches/Branch_5_x/profileservice/src/main/org/jboss/profileservice/management.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Apr 7 05:09:08 EDT 2009


Author: emuckenhuber
Date: 2009-04-07 05:09:07 -0400 (Tue, 07 Apr 2009)
New Revision: 86902

Modified:
   branches/Branch_5_x/profileservice/src/main/org/jboss/profileservice/management/ManagementViewImpl.java
Log:
[JBAS-6742] ignore readOnly values.

Modified: branches/Branch_5_x/profileservice/src/main/org/jboss/profileservice/management/ManagementViewImpl.java
===================================================================
--- branches/Branch_5_x/profileservice/src/main/org/jboss/profileservice/management/ManagementViewImpl.java	2009-04-07 08:38:48 UTC (rev 86901)
+++ branches/Branch_5_x/profileservice/src/main/org/jboss/profileservice/management/ManagementViewImpl.java	2009-04-07 09:09:07 UTC (rev 86902)
@@ -1127,6 +1127,7 @@
       {
          // Skip null values && non-CONFIGURATION values, unmodified values, and removed values
          boolean skip = prop.getValue() == null
+            || prop.isReadOnly()
             || prop.hasViewUse(ViewUse.CONFIGURATION) == false
 //            || prop.isModified() == false
             || prop.isRemoved() == true;




More information about the jboss-cvs-commits mailing list