Interface ResponseVariationsAnalyzer
-
public interface ResponseVariationsAnalyzerThis interface is used to analyze HTTP responses and find variations between them, according to various attributes.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Set<AttributeType>invariantAttributes()voidupdateWith(HttpResponse response)This method is used to update the analysis based on an additional response.java.util.Set<AttributeType>variantAttributes()
-
-
-
Method Detail
-
variantAttributes
java.util.Set<AttributeType> variantAttributes()
- Returns:
- The attributes that vary between the analyzed responses.
-
invariantAttributes
java.util.Set<AttributeType> invariantAttributes()
- Returns:
- The attributes that 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.
-
-