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

com.applitools.eyes.MatchResult Maven / Gradle / Ivy

There is a newer version: 2.57
Show newest version
/*
 * Applitools SDK for Selenium integration.
 */
package com.applitools.eyes;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;

/**
 * The result of a window match by the agent.
 */
@JsonIgnoreProperties({"$id", "screenshot"})
class MatchResult {

    private boolean asExpected;
    private String windowId;
    private EyesScreenshot screenshot;

    public MatchResult() {}

    public boolean getAsExpected() {
        return asExpected;
    }

    public void setAsExpected(boolean asExpected) {
        this.asExpected = asExpected;
    }

    public EyesScreenshot getScreenshot() {
        return screenshot;
    }

    public void setScreenshot(EyesScreenshot screenshot) {
        this.screenshot = screenshot;
    }

    public String getWindowId() {
        return windowId;
    }

    public void setWindowId(String windowId) {
        this.windowId = windowId;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy