org.loadosophia.jmeter.LoadosophiaUploadResults Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jmeter-plugins-standard Show documentation
Show all versions of jmeter-plugins-standard Show documentation
Custom plugins set for Apache JMeter
package org.loadosophia.jmeter;
public class LoadosophiaUploadResults {
private String redirect = "";
private int testID;
private int queueID;
public String getRedirectLink() {
return redirect;
}
public void setRedirectLink(String string) {
redirect = string;
}
public void setQueueID(int aQueueID) {
queueID = aQueueID;
}
public void setTestID(int aTestID) {
testID = aTestID;
}
public int getTestID() {
return testID;
}
public int getQueueID() {
return queueID;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy