What about statistics?
--
Jeremy
[EMAIL PROTECTED] wrote:
Author: djencks
Date: Tue Sep 20 12:26:46 2005
New Revision: 290538
URL: http://svn.apache.org/viewcvs?rev=290538&view=rev
Log:
GERONIMO-1003 non-persistent attributes cannot be manageable
Modified:
geronimo/trunk/modules/kernel/src/java/org/apache/geronimo/gbean/GAttributeInfo.java
Modified:
geronimo/trunk/modules/kernel/src/java/org/apache/geronimo/gbean/GAttributeInfo.java
URL:
http://svn.apache.org/viewcvs/geronimo/trunk/modules/kernel/src/java/org/apache/geronimo/gbean/GAttributeInfo.java?rev=290538&r1=290537&r2=290538&view=diff
==============================================================================
---
geronimo/trunk/modules/kernel/src/java/org/apache/geronimo/gbean/GAttributeInfo.java
(original)
+++
geronimo/trunk/modules/kernel/src/java/org/apache/geronimo/gbean/GAttributeInfo.java
Tue Sep 20 12:26:46 2005
@@ -75,7 +75,8 @@
this.name = name;
this.type = type;
this.persistent = persistent;
- this.manageable = manageable;
+ //non persistent attributes cannot be manageable
+ this.manageable = manageable & persistent;
this.readable = readable;
this.writable = writable;
this.getterName = getterName;