io.afu.utils.component.nginx.NginxInclude 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;
public class NginxInclude {
private String target;
public String getTarget() {
return target;
}
public void setTarget(String target) {
this.target = target;
}
public String getInclude() {
return "include "+target;
}
}