fixed JavaDoc comment
authormaxcooper <maxcooper>
Tue, 27 Aug 2002 11:01:05 +0000 (11:01 +0000)
committermaxcooper <maxcooper>
Tue, 27 Aug 2002 11:01:05 +0000 (11:01 +0000)
src/share/org/securityfilter/config/SecurityConfig.java
src/share/org/securityfilter/filter/SecurityRequestWrapper.java

index bbe244f..b7abba7 100644 (file)
@@ -1,7 +1,7 @@
 /*
- * $Header: /cvsroot/securityfilter/securityfilter/src/share/org/securityfilter/config/SecurityConfig.java,v 1.3 2002/08/12 01:34:28 maxcooper Exp $
- * $Revision: 1.3 $
- * $Date: 2002/08/12 01:34:28 $
+ * $Header: /cvsroot/securityfilter/securityfilter/src/share/org/securityfilter/config/SecurityConfig.java,v 1.4 2002/08/27 11:02:01 maxcooper Exp $
+ * $Revision: 1.4 $
+ * $Date: 2002/08/27 11:02:01 $
  *
  * ====================================================================
  * The SecurityFilter Software License, Version 1.1
@@ -72,7 +72,7 @@ import java.util.List;
  *
  * @author Torgeir Veimo (torgeir@pobox.com)
  * @author Max Cooper (max@maxcooper.com)
- * @version $Revision: 1.3 $ $Date: 2002/08/12 01:34:28 $
+ * @version $Revision: 1.4 $ $Date: 2002/08/27 11:02:01 $
  */
 public class SecurityConfig {
 
@@ -88,7 +88,6 @@ public class SecurityConfig {
     * Constructor that takes the validating flag and debug level to be used while parsing.
     *
     * @param validating validate the input file, true = validate, false = don't validate
-    * @param debugLevel set the debug level to use while parsing
     */
    public SecurityConfig(boolean validating) {
       this.validating = validating;
index 958e20a..fedf0b0 100644 (file)
@@ -1,7 +1,7 @@
 /*
- * $Header: /cvsroot/securityfilter/securityfilter/src/share/org/securityfilter/filter/SecurityRequestWrapper.java,v 1.3 2002/08/12 01:34:28 maxcooper Exp $
- * $Revision: 1.3 $
- * $Date: 2002/08/12 01:34:28 $
+ * $Header: /cvsroot/securityfilter/securityfilter/src/share/org/securityfilter/filter/SecurityRequestWrapper.java,v 1.4 2002/08/27 11:01:05 maxcooper Exp $
+ * $Revision: 1.4 $
+ * $Date: 2002/08/27 11:01:05 $
  *
  * ====================================================================
  * The SecurityFilter Software License, Version 1.1
@@ -73,7 +73,7 @@ import java.util.Map;
  *
  * @author Max Cooper (max@maxcooper.com)
  * @author Torgeir Veimo (torgeir@pobox.com)
- * @version $Revision: 1.3 $ $Date: 2002/08/12 01:34:28 $
+ * @version $Revision: 1.4 $ $Date: 2002/08/27 11:01:05 $
  */
 public class SecurityRequestWrapper extends HttpServletRequestWrapper {
    public static final String PRINCIPAL_SESSION_KEY = SecurityRequestWrapper.class.getName() + ".PRINCIPAL";
@@ -216,7 +216,7 @@ public class SecurityRequestWrapper extends HttpServletRequestWrapper {
     * WARNING: Calling this method will set the user for this session -- authenticate the user before calling
     * this method.
     *
-    * @param username the login name of the remote user for this session
+    * @param principal the user Principal object
     */
    public void setUserPrincipal(Principal principal) {
       currentRequest.getSession().setAttribute(PRINCIPAL_SESSION_KEY, principal);