
io.afu.utils.component.nginx.NginxServer Maven / Gradle / Ivy
package io.afu.utils.component.nginx;
import java.util.List;
public class NginxServer {
private List serverName;
private List listen;
private List index;
private String root;
private List locations;
private List includes;
private String accessLog;
public List getIncludes() {
return includes;
}
public void setIncludes(List includes) {
this.includes = includes;
}
public List getServerName() {
return serverName;
}
public void setServerName(List serverName) {
this.serverName = serverName;
}
public List getListen() {
return listen;
}
public void setListen(List listen) {
this.listen = listen;
}
public List getIndex() {
return index;
}
public void setIndex(List index) {
this.index = index;
}
public String getRoot() {
return root;
}
public void setRoot(String root) {
this.root = root;
}
public List getLocations() {
return locations;
}
public void setLocations(List locations) {
this.locations = locations;
}
public String getAccessLog() {
return accessLog;
}
public void setAccessLog(String accessLog) {
this.accessLog = accessLog;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy