com.onevizion.uitest.api.vo.entity.ComponentPackageVo 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 ComponentPackageVo {
private String name;
private ComponentPackageVo() {
}
public static Builder newBuilder() {
return new ComponentPackageVo().new Builder();
}
public String getName() {
return name;
}
public class Builder {
private Builder() {
}
public ComponentPackageVo build() {
if (ComponentPackageVo.this.name == null) {
throw new SeleniumUnexpectedException("");
}
return ComponentPackageVo.this;
}
public Builder setName(String name) {
ComponentPackageVo.this.name = name;
return this;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy