All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.applitools.eyes.settings.GetResultsSettings Maven / Gradle / Ivy

There is a newer version: 5.76.0
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy