Interface ResponseKeywordsAnalyzer
-
public interface ResponseKeywordsAnalyzerThis interface is used to analyze HTTP responses and retrieve keywords.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Set<java.lang.String>invariantKeywords()voidupdateWith(HttpResponse response)This method is used to update the analysis based on an additional response.java.util.Set<java.lang.String>variantKeywords()
-
-
-
Method Detail
-
variantKeywords
java.util.Set<java.lang.String> variantKeywords()
- Returns:
- A set of keywords whose counts vary between the analyzed responses.
-
invariantKeywords
java.util.Set<java.lang.String> invariantKeywords()
- Returns:
- A set of keywords whose counts do not vary between the analyzed responses.
-
updateWith
void updateWith(HttpResponse response)
This method is used to update the analysis based on an additional response.- Parameters:
response- The new response to include in the analysis.
-
-