You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by kf...@apache.org on 2013/09/12 11:34:03 UTC

svn commit: r1522502 - in /tomcat/tc7.0.x/trunk: java/org/apache/catalina/session/mbeans-descriptors.xml webapps/docs/changelog.xml

Author: kfujino
Date: Thu Sep 12 09:34:02 2013
New Revision: 1522502

URL: http://svn.apache.org/r1522502
Log:
The loaded attribute never exists in PersistentManager. 
isLoaded is defined as operation in mbeans-descriptors. 

Modified:
    tomcat/tc7.0.x/trunk/java/org/apache/catalina/session/mbeans-descriptors.xml
    tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml

Modified: tomcat/tc7.0.x/trunk/java/org/apache/catalina/session/mbeans-descriptors.xml
URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/java/org/apache/catalina/session/mbeans-descriptors.xml?rev=1522502&r1=1522501&r2=1522502&view=diff
==============================================================================
--- tomcat/tc7.0.x/trunk/java/org/apache/catalina/session/mbeans-descriptors.xml (original)
+++ tomcat/tc7.0.x/trunk/java/org/apache/catalina/session/mbeans-descriptors.xml Thu Sep 12 09:34:02 2013
@@ -232,11 +232,6 @@
           description="Number of sessions that expired ( doesn't include explicit invalidations )"
                  type="long" />
                  
-    <attribute   name="loaded"
-          description="If the session id is loaded in memory?"
-                 type="boolean"
-           writeable = "false" />
-                 
     <attribute   name="jvmRoute"
           description="Retrieve the JvmRoute for the enclosing Engine"
                  type="java.lang.String"
@@ -395,6 +390,15 @@
            returnType="java.lang.String">
     </operation>
 
+    <operation   name="isLoaded"
+          description="If the session id is loaded in memory?"
+               impact="ACTION"
+           returnType="booelan">
+      <parameter name="sessionId"
+          description="Id of the session"
+                 type="java.lang.String"/>
+    </operation>
+
   </mbean>
 
 </mbeans-descriptors>

Modified: tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml
URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml?rev=1522502&r1=1522501&r2=1522502&view=diff
==============================================================================
--- tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml (original)
+++ tomcat/tc7.0.x/trunk/webapps/docs/changelog.xml Thu Sep 12 09:34:02 2013
@@ -166,6 +166,10 @@
         <code>IOException</code> during output when using Tomcat&apos;
         proprietary (and deprecated) WebSocket API. (markt)
       </fix>
+      <fix>
+        The loaded attribute never exists in <code>PersistentManager</code>.
+        isLoaded is defined as operation in mbeans-descriptors. (kfujino)
+      </fix>
     </changelog>
   </subsection>
   <subsection name="Coyote">



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org