
com.katalon.testops.commons.configuration.Configuration Maven / Gradle / Ivy
The newest version!
package com.katalon.testops.commons.configuration;
import com.katalon.testops.commons.configuration.proxy.ProxyInformation;
import java.nio.file.Path;
public class Configuration {
private String serverUrl;
private String apiKey;
private Long projectId;
private Path reportFolder;
private String buildLabel;
private String buildUrl;
private ProxyInformation proxyInformation;
private String sessionId;
public String getServerUrl() {
return serverUrl;
}
public void setServerUrl(String serverUrl) {
this.serverUrl = serverUrl;
}
public String getApiKey() {
return apiKey;
}
public void setApiKey(String apiKey) {
this.apiKey = apiKey;
}
public Long getProjectId() {
return projectId;
}
public void setProjectId(Long projectId) {
this.projectId = projectId;
}
public Path getReportFolder() {
return reportFolder;
}
public void setReportFolder(Path reportFolder) {
this.reportFolder = reportFolder;
}
public String getBuildLabel() {
return buildLabel;
}
public void setBuildLabel(String buildLabel) {
this.buildLabel = buildLabel;
}
public String getBuildUrl() {
return buildUrl;
}
public void setBuildUrl(String buildUrl) {
this.buildUrl = buildUrl;
}
public ProxyInformation getProxyInformation() {
return proxyInformation;
}
public void setProxyInformation(ProxyInformation proxyInformation) {
this.proxyInformation = proxyInformation;
}
public String getSessionId() {
return sessionId;
}
public void setSessionId(String sessionId) {
this.sessionId = sessionId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy