Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=49376
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Sun, 6 Jun 2010 21:31:20 +0000 (21:31 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Sun, 6 Jun 2010 21:31:20 +0000 (21:31 +0000)
Correct package names in info properties

git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@951992 13f79535-47bb-0310-9956-ffa450edef68

java/org/apache/catalina/ha/authenticator/ClusterSingleSignOn.java
java/org/apache/catalina/ha/authenticator/ClusterSingleSignOnListener.java
java/org/apache/catalina/ha/session/ClusterSessionListener.java

index 8e82a61..b599e22 100644 (file)
@@ -66,7 +66,7 @@ public class ClusterSingleSignOn
      * Descriptive information about this Valve implementation.
      */
     protected static String info =
-        "org.apache.catalina.cluster.authenticator.ClusterSingleSignOn";
+        "org.apache.catalina.ha.authenticator.ClusterSingleSignOn";
 
     protected int messageNumber = 0;
 
index c6805e3..154cd25 100644 (file)
@@ -40,7 +40,7 @@ public class ClusterSingleSignOnListener extends ClusterListener {
     /**
      * The descriptive information about this implementation.
      */
-    protected static final String info = "org.apache.catalina.session.ClusterSingleSignOnListener/1.0";
+    protected static final String info = "org.apache.catalina.ha.authenticator.ClusterSingleSignOnListener/1.0";
 
     // ------------------------------------------------------------- Properties
 
index 18c3fbd..21ec449 100644 (file)
@@ -39,7 +39,7 @@ public class ClusterSessionListener extends ClusterListener {
     /**
      * The descriptive information about this implementation.
      */
-    protected static final String info = "org.apache.catalina.session.ClusterSessionListener/1.1";
+    protected static final String info = "org.apache.catalina.ha.session.ClusterSessionListener/1.1";
 
     //--Constructor---------------------------------------------