From: <bra...@us...> - 2011-05-25 01:03:23
|
Revision: 3440 http://archive-access.svn.sourceforge.net/archive-access/?rev=3440&view=rev Author: bradtofel Date: 2011-05-25 01:03:17 +0000 (Wed, 25 May 2011) Log Message: ----------- JAVADOC Modified Paths: -------------- trunk/archive-access/projects/wayback/wayback-core/src/main/java/org/archive/wayback/webapp/AccessPoint.java Modified: trunk/archive-access/projects/wayback/wayback-core/src/main/java/org/archive/wayback/webapp/AccessPoint.java =================================================================== --- trunk/archive-access/projects/wayback/wayback-core/src/main/java/org/archive/wayback/webapp/AccessPoint.java 2011-05-25 01:02:18 UTC (rev 3439) +++ trunk/archive-access/projects/wayback/wayback-core/src/main/java/org/archive/wayback/webapp/AccessPoint.java 2011-05-25 01:03:17 UTC (rev 3440) @@ -702,7 +702,7 @@ } /** - * @param filePrefixes List of String file prefixes that will be matched + * @param fileIncludePrefixes List of String file prefixes that will be matched * when querying the ResourceIndex - only SearchResults from files * with a prefix matching one of those in this List will be returned. */ @@ -719,7 +719,7 @@ } /** - * @param filePrefixes List of String file prefixes that will be matched + * @param fileExcludePrefixes List of String file prefixes that will be matched * when querying the ResourceIndex - only SearchResults from files * with a prefix matching one of those in this List will be returned. */ @@ -893,9 +893,15 @@ this.bounceToQueryPrefix = bounceToQueryPrefix; } + /** + * @return the configured number of MS for min age to return from the index + */ public long getEmbargoMS() { return embargoMS; } + /** + * @param ms minimum number of MS age for content to be served from the index + */ public void setEmbargoMS(long ms) { this.embargoMS = ms; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |