added todo note about adding BASIC auth method support
authormaxcooper <maxcooper>
Mon, 7 Jul 2003 04:16:40 +0000 (04:16 +0000)
committermaxcooper <maxcooper>
Mon, 7 Jul 2003 04:16:40 +0000 (04:16 +0000)
src/share/org/securityfilter/filter/SecurityRequestWrapper.java

index 36b2e1b..1803ed1 100644 (file)
@@ -1,7 +1,7 @@
 /*
- * $Header: /cvsroot/securityfilter/securityfilter/src/share/org/securityfilter/filter/SecurityRequestWrapper.java,v 1.7 2003/01/18 07:14:49 dayash Exp $
- * $Revision: 1.7 $
- * $Date: 2003/01/18 07:14:49 $
+ * $Header: /cvsroot/securityfilter/securityfilter/src/share/org/securityfilter/filter/SecurityRequestWrapper.java,v 1.8 2003/07/07 04:16:40 maxcooper Exp $
+ * $Revision: 1.8 $
+ * $Date: 2003/07/07 04:16:40 $
  *
  * ====================================================================
  * The SecurityFilter Software License, Version 1.1
@@ -74,7 +74,7 @@ import java.util.Map;
  * @author Max Cooper (max@maxcooper.com)
  * @author Daya Sharma (iamdaya@yahoo.com, billydaya@sbcglobal.net)
  * @author Torgeir Veimo (torgeir@pobox.com)
- * @version $Revision: 1.7 $ $Date: 2003/01/18 07:14:49 $
+ * @version $Revision: 1.8 $ $Date: 2003/07/07 04:16:40 $
  */
 public class SecurityRequestWrapper extends HttpServletRequestWrapper {
    public static final String PRINCIPAL_SESSION_KEY = SecurityRequestWrapper.class.getName() + ".PRINCIPAL";
@@ -232,6 +232,8 @@ public class SecurityRequestWrapper extends HttpServletRequestWrapper {
 
    /**
     * Returns FORM_AUTH if the user has been authenticated, null otherwise.
+    *
+    * todo: add BASIC support
     */
    public String getAuthType() {
       if (getUserPrincipal() != null) {