
io.afu.utils.component.nginx.Upstream Maven / Gradle / Ivy
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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy