Skip to content

Commit

Permalink
Clean up session cookie string check, remove old web auth code
Browse files Browse the repository at this point in the history
  • Loading branch information
gschueler committed Nov 23, 2010
1 parent 003d0c4 commit c5e21ff
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 269 deletions.
Expand Up @@ -74,7 +74,7 @@ public abstract class BaseFormAuthenticator implements HttpAuthenticator {
* Cookie name for java auth session: {@value}
*/
public static final String JAVA_SESSION_COOKIE_NAME = "JSESSIONID";
public static final Pattern JAVA_SESSION_COOKIE_PATTERN = Pattern.compile("^JSESSIONID(_CT_.+)?$");
public static final Pattern JAVA_SESSION_COOKIE_PATTERN = Pattern.compile("^JSESSIONID$");
/**
* Secure protocol: {@value}
*/
Expand Down
268 changes: 0 additions & 268 deletions core/src/java/com/dtolabs/client/utils/DefaultFormAuthenticator.java

This file was deleted.

0 comments on commit c5e21ff

Please sign in to comment.