com.applitools.eyes.AppOutputWithScreenshot Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eyes-sdk-java-jersey1_17-sf2_51_0 Show documentation
Show all versions of eyes-sdk-java-jersey1_17-sf2_51_0 Show documentation
Applitools Eyes SDK base for Java
/*
* Applitools SDK for Selenium integration.
*/
package com.applitools.eyes;
/**
* A container for a AppOutput along with the screenshot used for
* creating it. (We specifically avoid inheritance so we don't have to deal
* with serialization issues).
*/
class AppOutputWithScreenshot {
private final AppOutput appOutput;
private final EyesScreenshot screenshot;
public AppOutputWithScreenshot(AppOutput appOutput,
EyesScreenshot screenshot) {
this.appOutput = appOutput;
this.screenshot = screenshot;
}
public AppOutput getAppOutput() {
return appOutput;
}
public EyesScreenshot getScreenshot() {
return screenshot;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy