Author: markt
Date: Thu Jul 29 08:11:52 2010
New Revision: 980355

URL: http://svn.apache.org/viewvc?rev=980355&view=rev
Log:
Remove unused SimpleTcpReplicationManager and associated ReplicatedSession

Removed:
    tomcat/trunk/java/org/apache/catalina/ha/session/ReplicatedSession.java
    
tomcat/trunk/java/org/apache/catalina/ha/session/SimpleTcpReplicationManager.java
Modified:
    tomcat/trunk/java/org/apache/catalina/ha/session/mbeans-descriptors.xml

Modified: 
tomcat/trunk/java/org/apache/catalina/ha/session/mbeans-descriptors.xml
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/ha/session/mbeans-descriptors.xml?rev=980355&r1=980354&r2=980355&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/catalina/ha/session/mbeans-descriptors.xml 
(original)
+++ tomcat/trunk/java/org/apache/catalina/ha/session/mbeans-descriptors.xml Thu 
Jul 29 08:11:52 2010
@@ -609,226 +609,4 @@
       impact="ACTION"
       returnType="void"/>
   </mbean>
-  <mbean
-    name="SimpleTcpReplicationManager"
-    className="org.apache.catalina.mbeans.ClassNameMBean"
-    description="Clustered implementation of the Manager interface"
-    domain="Catalina"
-    group="Manager"
-    type="org.apache.catalina.ha.tcp.SimpleTcpReplicationManager">
-    <attribute
-      name="activeSessions"
-      description="The number of active sessions"
-      type="int"/>
-    <attribute
-      name="algorithm"
-      description="The message digest algorithm to be used when generating 
session identifiers"
-      type="java.lang.String"/>
-    <attribute
-      name="className"
-      description="Fully qualified class name of the managed object"
-      type="java.lang.String"
-      writeable="false"/>
-    <attribute
-      name="defaultMode"
-      description="The default mode"
-      type="boolean"/>
-    <attribute
-      name="distributable"
-      description="The distributable flag for Sessions created by this Manager"
-      type="boolean"/>
-    <attribute
-      name="duplicates"
-      description="The number of duplicated session IDs generated by the 
random source."
-      type="int"/>    
-    <attribute
-      name="entropy"
-      description="A String initialization parameter used to increase the 
entropy of the initialization of our random number generator"
-      type="java.lang.String"/>
-    <attribute
-      name="expiredSessions"
-      description="The number of sessions that have expired"
-      type="int"/>  
-    <attribute
-      name="expireSessionsOnShutdown"
-      description="Should the sessions be expired on shutdown?"
-      type="boolean"/> 
-    <attribute
-      name="info"
-      description="The descriptive information about this Manager 
implementation"
-      type="java.lang.String"
-      writeable="false"/> 
-    <attribute
-      name="invalidatedSessions"
-      description="Invalidated sessions"
-      type="[Ljava.lang.String;"
-      writeable="false"/> 
-    <attribute
-      name="jvmRoute"
-      description="The JvmRoute for the enclosing Engine."
-      type="java.lang.String"
-      writeable="false"/>     
-    <attribute
-      name="managedResource"
-      description="The managed resource this MBean is associated with"
-      type="java.lang.Object"/>
-    <attribute
-      name="maxActive"
-      description="The highest number of concurrent active sessions"
-      type="int"/>
-    <attribute
-      name="maxActiveSessions"
-      description="The maximum number of active Sessions allowed, or -1 for no 
limit"
-      type="int"/>
-    <attribute
-      name="maxInactiveInterval"
-      description="The default maximum inactive interval for Sessions created 
by this Manager"
-      type="int"/>
-    <attribute
-      name="notifyListenersOnReplication"
-      description="Should listeners be notified on replication?"
-      type="boolean"/>
-    <attribute
-      name="name"
-      description="The descriptive short name of this Manager implementation"
-      type="java.lang.String"
-      writeable="false"/>
-    <attribute
-      name="pathName"
-      description="The session persistence pathname, if any."
-      type="java.lang.String"/>
-    <attribute
-      name="printToScreen"
-      description="Log to screen"
-      type="boolean"/>
-    <attribute
-      name="processExpiresFrequency"
-      description="The manager checks frequency."
-      type="int"/>
-    <attribute
-      name="processingTime"
-      description="The processing time during session expiration"
-      type="long"/>
-    <attribute
-      name="randomClass"
-      description="The Java class name of the random number generator class to 
be used when generating session identifiers."
-      type="java.lang.String"/>
-    <attribute
-      name="randomFile"
-      description="The path to a random generator file, and default to java 
Random if not found "
-      type="java.lang.String"/>
-    <attribute
-      name="rejectedSessions"
-      description="The number of session creations that failed due to 
maxActiveSessions"
-      type="long"/>
-    <attribute
-      name="sessionAverageAliveTime"
-      description="The average time (in seconds) that expired sessions had 
been alive."
-      type="int"/>
-    <attribute
-      name="sessionCounter"
-      description="Total sessions created by this manager"
-      type="long"/>
-    <attribute
-      name="sessionIdLength"
-      description="The session id length (in bytes) for Sessions created by 
this Manager."
-      type="int"/>
-    <attribute
-      name="sessionMaxAliveTime"
-      description="The longest time (in seconds) that an expired session had 
been alive."
-      type="int"/>
-    <attribute
-      name="stateTransfered"
-      description="Is session state transfered complete? "
-      type="boolean"
-      writeable="false"/> 
-    <attribute
-      name="synchronousReplication"
-      description="Use synchronous rather than asynchronous replication."
-      type="boolean"/> 
-    <attribute
-      name="useDirtyFlag"
-      description="Use dirty flag"
-      type="boolean"/>   
-    <operation
-      name="expireSession"
-      description="Expired the given session"
-      impact="ACTION"
-      returnType="void">
-      <parameter
-        name="sessionId"
-        description="The session id for the session to be expired"
-        type="java.lang.String"/>
-    </operation>
-    <operation
-      name="findSession"
-      description="Return the active Session, associated with this Manager, 
with the specified session id (if any)"
-      impact="ACTION"
-      returnType="org.apache.catalina.Session">
-      <parameter
-        name="id"
-        description="The session id for the session to be returned"
-        type="java.lang.String"/>
-    </operation>
-    <operation
-      name="findSessions"
-      description="Return the set of active Sessions associated with this 
Manager."
-      impact="ACTION"
-      returnType="[Lorg.apache.catalina.Session;">
-    </operation>  
-    <operation
-      name="getCreationTime"
-      description="Return the creatio time for this session"
-      impact="ACTION"
-      returnType="java.lang.String">
-      <parameter
-        name="sessionId"
-        description="The session id for the session "
-        type="java.lang.String"/>
-    </operation>   
-    <operation
-      name="getLastAccessedTime"
-      description="Get the last access time. This one gets updated whenever a 
request finishes. "
-      impact="ACTION"
-      returnType="java.lang.String">
-      <parameter
-        name="sessionId"
-        description="Id of the session"
-        type="java.lang.String"/>
-    </operation> 
-    <operation
-      name="getSessionAttribute"
-      description="Return a session attribute"
-      impact="ACTION"
-      returnType="java.lang.String">
-      <parameter
-        name="sessionId"
-        description="Id of the session"
-        type="java.lang.String"/>
-      <parameter
-        name="key"
-        description="key of the attribute"
-        type="java.lang.String"/>
-    </operation>
-    <operation
-      name="getThisAccessedTime"
-      description="Get the last access time. This one gets updated whenever a 
request starts. "
-      impact="ACTION"
-      returnType="java.lang.String">
-      <parameter
-        name="sessionId"
-        description="Id of the session"
-        type="java.lang.String"/>
-    </operation> 
-    <operation
-      name="listSessionIds"
-      description="Return the list of active primary session ids"
-      impact="ACTION"
-      returnType="java.lang.String"/>
-    <operation
-      name="processExpires"
-      description="Invalidate all sessions that have expired.s"
-      impact="ACTION"
-      returnType="void"/>
-  </mbean>
 </mbeans-descriptors>



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

Reply via email to