com.applitools.eyes.RenderingInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eyes-common-java4 Show documentation
Show all versions of eyes-common-java4 Show documentation
Common code for Applitools Eyes Java SDK projects
package com.applitools.eyes;
public class RenderingInfo {
private String serviceUrl = null;
private String accessToken = null;
private String resultsUrl = null;
private String stitchingServiceUrl = null;
public RenderingInfo(String serviceUrl, String accessToken, String resultsUrl,String stitchingServiceUrl) {
this.serviceUrl = serviceUrl;
this.accessToken = accessToken;
this.resultsUrl = resultsUrl;
this.stitchingServiceUrl = stitchingServiceUrl;
}
public RenderingInfo() {
}
public String getServiceUrl() {
return serviceUrl;
}
public String getAccessToken() {
return accessToken;
}
public String getResultsUrl() {
return resultsUrl;
}
public String getStitchingServiceUrl() {
return stitchingServiceUrl;
}
public void setStitchingServiceUrl(String stitchingServiceUrl) {
this.stitchingServiceUrl = stitchingServiceUrl;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy