updated comments to reflect proper Servlet Spec 2.3 compliance
authormaxcooper <maxcooper>
Tue, 10 Dec 2002 05:02:18 +0000 (05:02 +0000)
committermaxcooper <maxcooper>
Tue, 10 Dec 2002 05:02:18 +0000 (05:02 +0000)
src/share/org/securityfilter/filter/MatchableURLPattern.java

index 28b86cf..492f25c 100644 (file)
@@ -1,7 +1,7 @@
 /*
- * $Header: /cvsroot/securityfilter/securityfilter/src/share/org/securityfilter/filter/Attic/MatchableURLPattern.java,v 1.6 2002/12/09 12:23:03 maxcooper Exp $
- * $Revision: 1.6 $
- * $Date: 2002/12/09 12:23:03 $
+ * $Header: /cvsroot/securityfilter/securityfilter/src/share/org/securityfilter/filter/Attic/MatchableURLPattern.java,v 1.7 2002/12/10 05:02:18 maxcooper Exp $
+ * $Revision: 1.7 $
+ * $Date: 2002/12/10 05:02:18 $
  *
  * ====================================================================
  * The SecurityFilter Software License, Version 1.1
@@ -65,11 +65,10 @@ import java.util.Collection;
 
 /**
  * MatchableURLPattern - Contains matchable URL pattern and the associated SecurityConstraint and WebResourceCollection
- * objects for the pattern. Also supports sorting according to the Servlet Spec v2.3 (not yet implemented - just sorts
- * by the order field).
+ * objects for the pattern. Also supports sorting according to the Servlet Spec v2.3.
  *
  * @author Max Cooper (max@maxcooper.com)
- * @version $Revision: 1.6 $ $Date: 2002/12/09 12:23:03 $
+ * @version $Revision: 1.7 $ $Date: 2002/12/10 05:02:18 $
  */
 public class MatchableURLPattern implements Comparable {
    private String pattern;
@@ -285,7 +284,6 @@ public class MatchableURLPattern implements Comparable {
    /**
     * Return the pattern string in RE syntax form.
     *
-    * TO-DO: validate that the conversion is proper for all pattern strings (probably needs some improvements).
     * Would the jakarta-oro be more suited for matching than jakarta-regexp?
     */
    private String getConvertedPattern() {