wdutil.wdjws.Environment Maven / Gradle / Ivy
The newest version!
package wdutil.wdjws;
public class Environment {
protected String id;
protected String name;
protected String uiHost;
protected String svcHost;
protected T envType;
public String getId() {
return id;
}
public void setId(String value) {
this.id = value;
}
public String getName() {
return name;
}
public void setName(String value) {
this.name = value;
}
public String getUIHost() {
return uiHost;
}
public void setUIHost(String value) {
this.uiHost = value;
}
public String getSVCHost() {
return svcHost;
}
public void setSVCHost(String value) {
this.svcHost = value;
}
public T getEnvType() {
return envType;
}
public void setEnvType(T value) {
this.envType = value;
}
public Environment withUIHost(String value) {
setUIHost(value);
return this;
}
public Environment withSVCHost(String value) {
setSVCHost(value);
return this;
}
public Environment withEnvType(T value) {
setEnvType(value);
return this;
}
public Environment withId(String value) {
setId(value);
return this;
}
public Environment withName(String value) {
setName(value);
return this;
}
}