Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGreg Wilkins2010-04-30 08:53:19 +0000
committerGreg Wilkins2010-04-30 08:53:19 +0000
commit4690be611a21d7eb11847ed026be81b0eee18c45 (patch)
tree6b72d8bf85a4d79325522bb757dc16c181cd9f87 /jetty-security/src/main/java/org/eclipse/jetty/security/authentication/SessionAuthentication.java
parentb7b067e7f3cc5c054560ff782d6e49bb81947137 (diff)
downloadorg.eclipse.jetty.project-4690be611a21d7eb11847ed026be81b0eee18c45.tar.gz
org.eclipse.jetty.project-4690be611a21d7eb11847ed026be81b0eee18c45.tar.xz
org.eclipse.jetty.project-4690be611a21d7eb11847ed026be81b0eee18c45.zip
#309185 more javadoc fixes
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@1628 7e9141cc-0065-0410-87d8-b60c137991c4
Diffstat (limited to 'jetty-security/src/main/java/org/eclipse/jetty/security/authentication/SessionAuthentication.java')
-rw-r--r--jetty-security/src/main/java/org/eclipse/jetty/security/authentication/SessionAuthentication.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/jetty-security/src/main/java/org/eclipse/jetty/security/authentication/SessionAuthentication.java b/jetty-security/src/main/java/org/eclipse/jetty/security/authentication/SessionAuthentication.java
index 5790677b01..ec20115ee5 100644
--- a/jetty-security/src/main/java/org/eclipse/jetty/security/authentication/SessionAuthentication.java
+++ b/jetty-security/src/main/java/org/eclipse/jetty/security/authentication/SessionAuthentication.java
@@ -24,7 +24,7 @@ import org.eclipse.jetty.security.Authenticator;
import org.eclipse.jetty.security.UserAuthentication;
import org.eclipse.jetty.server.UserIdentity;
-class SessionAuthentication extends UserAuthentication implements HttpSessionAttributeListener, Serializable
+public class SessionAuthentication extends UserAuthentication implements HttpSessionAttributeListener, Serializable
{
private static final long serialVersionUID = -4643200685888258706L;

Back to the top