us.abstracta.jmeter.javadsl.blazemeter.api.ApiResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jmeter-java-dsl-blazemeter Show documentation
Show all versions of jmeter-java-dsl-blazemeter Show documentation
Module which allows to easily run jmeter-java-dsl test plans at scale in
BlazeMeter.
package us.abstracta.jmeter.javadsl.blazemeter.api;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
public class ApiResponse {
private final T result;
@JsonCreator
private ApiResponse(@JsonProperty("result") T result) {
this.result = result;
}
public T getResult() {
return result;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy