Interface ResponseKeywordsAnalyzer


  • public interface ResponseKeywordsAnalyzer
    This interface is used to analyze HTTP responses and retrieve keywords.
    • 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.