From: <bra...@us...> - 2007-07-16 23:51:20
|
Revision: 1802 http://archive-access.svn.sourceforge.net/archive-access/?rev=1802&view=rev Author: bradtofel Date: 2007-07-16 16:51:03 -0700 (Mon, 16 Jul 2007) Log Message: ----------- TWEAK: added constants for describing UrlSearchResults and CaptureSearchResults. Modified Paths: -------------- trunk/archive-access/projects/wayback/wayback-core/src/main/java/org/archive/wayback/WaybackConstants.java Modified: trunk/archive-access/projects/wayback/wayback-core/src/main/java/org/archive/wayback/WaybackConstants.java =================================================================== --- trunk/archive-access/projects/wayback/wayback-core/src/main/java/org/archive/wayback/WaybackConstants.java 2007-07-16 23:49:43 UTC (rev 1801) +++ trunk/archive-access/projects/wayback/wayback-core/src/main/java/org/archive/wayback/WaybackConstants.java 2007-07-16 23:51:03 UTC (rev 1802) @@ -193,8 +193,24 @@ */ public static final String REQUEST_YES = "yes"; + /** + * Results: type of results: "Capture" or "Url" + */ + public static final String RESULTS_TYPE = "resultstype"; + + /** + * Results: indicates SearchResult objects within the SearchResults are of + * type UrlSearchResults. + */ + public static final String RESULTS_TYPE_URL = "resultstypeurl"; /** + * Results: indicates SearchResult objects within the SearchResults are of + * type CaptureSearchResults. + */ + public static final String RESULTS_TYPE_CAPTURE = "resultstypecapture"; + + /** * Results: int total number of records matching, not all necc. returned. */ public static final String RESULTS_NUM_RESULTS = "numresults"; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |