[jboss-cvs] JBossAS SVN: r60266 - branches/Branch_4_2/tomcat/src/main/org/jboss/web/tomcat/service/sso.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Sun Feb 4 12:56:04 EST 2007


Author: bstansberry at jboss.com
Date: 2007-02-04 12:56:04 -0500 (Sun, 04 Feb 2007)
New Revision: 60266

Modified:
   branches/Branch_4_2/tomcat/src/main/org/jboss/web/tomcat/service/sso/ClusteredSingleSignOn.java
Log:
Expose empty SSO callbacks as protected for use by test cases

Modified: branches/Branch_4_2/tomcat/src/main/org/jboss/web/tomcat/service/sso/ClusteredSingleSignOn.java
===================================================================
--- branches/Branch_4_2/tomcat/src/main/org/jboss/web/tomcat/service/sso/ClusteredSingleSignOn.java	2007-02-04 17:55:29 UTC (rev 60265)
+++ branches/Branch_4_2/tomcat/src/main/org/jboss/web/tomcat/service/sso/ClusteredSingleSignOn.java	2007-02-04 17:56:04 UTC (rev 60266)
@@ -1167,7 +1167,7 @@
     * Callback from the SSOManager when it detects an SSO without
     * any active sessions across the cluster
     */
-   void notifySSOEmpty(String ssoId)
+   protected void notifySSOEmpty(String ssoId)
    {
       Object obj = emptySSOs.put(ssoId, new Long(System.currentTimeMillis()));
       
@@ -1181,7 +1181,7 @@
     * Callback from the SSOManager when it detects an SSO that
     * has active sessions across the cluster
     */
-   void notifySSONotEmpty(String ssoId)
+   protected void notifySSONotEmpty(String ssoId)
    {
       Object obj = emptySSOs.remove(ssoId);
       




More information about the jboss-cvs-commits mailing list