io.afu.utils.component.nginx.Upstream Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of utils Show documentation
Show all versions of utils Show documentation
RffanLAB Utils For Many Way use
package io.afu.utils.component.nginx;
import java.util.List;
public class Upstream {
private String name;
private String upstreamType;
private List servers;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getUpstreamType() {
return upstreamType;
}
public void setUpstreamType(String upstreamType) {
this.upstreamType = upstreamType;
}
public List getServers() {
return servers;
}
public void setServers(List servers) {
this.servers = servers;
}
public String getUpstream(){
return null;
}
}