com.applitools.eyes.MatchResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eyes-sdk-java-jersey2x Show documentation
Show all versions of eyes-sdk-java-jersey2x Show documentation
Applitools Eyes SDK base for Java
/*
* 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