
com.onevizion.uitest.api.vo.entity.ConfigFieldVoRollup Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ui-test-api Show documentation
Show all versions of ui-test-api Show documentation
An API for easily write tests for OneVizion platform
The newest version!
package com.onevizion.uitest.api.vo.entity;
import com.onevizion.uitest.api.exception.SeleniumUnexpectedException;
public class ConfigFieldVoRollup {
private String trackorType;
private ConfigFieldVoRollup() {
}
public static Builder newBuilder() {
return new ConfigFieldVoRollup().new Builder();
}
public String getTrackorType() {
return trackorType;
}
public class Builder {
private Builder() {
}
public ConfigFieldVoRollup build() {
if (ConfigFieldVoRollup.this.trackorType == null) {
throw new SeleniumUnexpectedException("");
}
return ConfigFieldVoRollup.this;
}
public Builder setTrackorType(String trackorType) {
ConfigFieldVoRollup.this.trackorType = trackorType;
return this;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy