View | Details | Raw Unified | Return to bug 34724
Collapse All | Expand All

(-)AuthenticatorBase.java (-1 / +6 lines)
Lines 69-75 Link Here
69
 * requests.  Requests of any other type will simply be passed through.
69
 * requests.  Requests of any other type will simply be passed through.
70
 *
70
 *
71
 * @author Craig R. McClanahan
71
 * @author Craig R. McClanahan
72
 * @version $Revision: 1.25 $ $Date: 2004/09/13 21:07:43 $
72
 * @version $Revision: 1.2 $ $Date: 2005/03/01 16:51:56 $
73
 */
73
 */
74
74
75
75
Lines 699-704 Link Here
699
            Cookie cookie = new Cookie(Constants.SINGLE_SIGN_ON_COOKIE, ssoId);
699
            Cookie cookie = new Cookie(Constants.SINGLE_SIGN_ON_COOKIE, ssoId);
700
            cookie.setMaxAge(-1);
700
            cookie.setMaxAge(-1);
701
            cookie.setPath("/");
701
            cookie.setPath("/");
702
          String ssoDomain = sso.getCookieDomain();
703
704
          if (ssoDomain != null) {
705
            cookie.setDomain(ssoDomain);
706
          }
702
            response.addCookie(cookie);
707
            response.addCookie(cookie);
703
708
704
            // Register this principal with our SSO valve
709
            // Register this principal with our SSO valve

Return to bug 34724