com.applitools.eyes.settings.GetResultsSettings Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eyes-sdk-core-java5 Show documentation
Show all versions of eyes-sdk-core-java5 Show documentation
Applitools Eyes SDK base for Java
package com.applitools.eyes.settings;
import com.fasterxml.jackson.annotation.JsonInclude;
@JsonInclude(JsonInclude.Include.NON_NULL)
public class GetResultsSettings {
private Boolean throwErr;
private Boolean removeDuplicateTests;
public GetResultsSettings(boolean shouldThrowException) {
this.throwErr = shouldThrowException;
}
public GetResultsSettings(Boolean throwErr, Boolean removeDuplicateTests) {
this.throwErr = throwErr;
this.removeDuplicateTests = removeDuplicateTests;
}
public Boolean getThrowErr() {
return throwErr;
}
public void setThrowErr(Boolean throwErr) {
this.throwErr = throwErr;
}
public Boolean getRemoveDuplicateTests() {
return removeDuplicateTests;
}
public void setRemoveDuplicateTests(Boolean removeDuplicateTests) {
this.removeDuplicateTests = removeDuplicateTests;
}
}