- * is sorted in increasing lexicographic order by href. Within each
- * HrefConcordanceEntry, the files retrieved via getLocations()
- * are also sorted in increasing lexicographic order.
- *
- *
- * Example 1:
- * The following parameters will fetch all the broken links
- * within the ROOT webapp in the staging area of the 'mysite' web project:
- *
- * - storeNameOrWebappPath="mysite:/www/avm_webapps/ROOT"
- *
- statusGTE=400
- *
- statusLTE=599
- *
- *
- * Example 2:
- * The following parameters will fetch all the links whose return status
- * is "successful" (2xx) for all webapps contained by the staging area of
- * the 'mysite' web project:
- *
- * - storeNameOrWebappPath="mysite"
- *
- statusGTE=200
- *
- statusLTE=299
- *
- *
- * Example 3:
- * The following parameters will fetch all the links whose return status
- * is 200 (OK) within the ROOT webapp in the staging area of the 'mysite'
- * web project:
- *
- * - storeNameOrWebappPath="mysite:/www/avm_webapps/ROOT"
- *
- statusGTE=200
- *
- statusLTE=200
- *
- *
- * For details regarding HTTP status codes, see:
- * http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html
- *
- */
- //-------------------------------------------------------------------------
- public List getHrefConcordanceEntries(
- String storeNameOrWebappPath,
- int statusGTE,
- int statusLTE
- ) throws AVMNotFoundException;
-
-
-
//-------------------------------------------------------------------------
/**
* Fetch all hyperlinks that rely upon the existence of the file specified
@@ -301,25 +200,4 @@ public interface LinkValidationService
//-------------------------------------------------------------------------
public List getHrefsDependentUponFile(String path);
-
-
-
-
- //-------------------------------------------------------------------------
- // NEARLY OBSOLETE!
- // NEARLY OBSOLETE!
- // NEARLY OBSOLETE!
- // NEARLY OBSOLETE!
- //-------------------------------------------------------------------------
- public void updateHrefInfo(
- String storeNameOrWebappPath, // NEARLY OBSOLETE!
- boolean incremental, // NEARLY OBSOLETE!
- int connectTimeout, // NEARLY OBSOLETE!
- int readTimeout, // NEARLY OBSOLETE!
- int nthreads, // NEARLY OBSOLETE!
- HrefValidationProgress progress) // NEARLY OBSOLETE!
- throws AVMNotFoundException, // NEARLY OBSOLETE!
- SocketException, // NEARLY OBSOLETE!
- SSLException, // NEARLY OBSOLETE!
- LinkValidationAbortedException; // NEARLY OBSOLETE!
}