us.abstracta.jmeter.javadsl.blazemeter.api.Workspace 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 Workspace {
private final long accountId;
@JsonCreator
private Workspace(@JsonProperty("accountId") long accountId) {
this.accountId = accountId;
}
public long getAccountId() {
return accountId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy