Can you explain how saving statistics values between server stop/starts
is meaningful? Could be, but I don't understand how yet. I basically
don't know anything about how people gather server statistics.
Maybe calling this "manageable" is not quite the right term?
thanks
david jencks
On Sep 20, 2005, at 8:47 PM, Jeremy Boynes wrote:
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;