package com.terra.proxy.properties;
|
|
import lombok.Data;
|
|
@Data
|
public class ProxyProperties {
|
|
private String host;
|
|
private String targethost;
|
|
private Integer times;
|
|
private String logapipath;
|
|
private String servletmapjson;
|
|
private String blacklist;
|
|
private String blackUris;
|
|
private String tempAllowUrls;
|
|
private String tempAllowBlackList;
|
|
public String getLogapipath() {
|
return logapipath;
|
}
|
|
public void setLogapipath(String logapipath) {
|
this.logapipath = logapipath;
|
}
|
|
public String getServletmapjson() {
|
return servletmapjson;
|
}
|
|
public void setServletmapjson(String servletmapjson) {
|
this.servletmapjson = servletmapjson;
|
}
|
|
public Integer getTimes() {
|
return times;
|
}
|
|
public void setTimes(Integer times) {
|
this.times = times;
|
}
|
|
public String getTargethost() {
|
return targethost;
|
}
|
|
public void setTargethost(String targethost) {
|
this.targethost = targethost;
|
}
|
|
public String getHost() {
|
return host;
|
}
|
|
public void setHost(String host) {
|
this.host = host;
|
}
|
|
public String getBlacklist() {
|
return blacklist;
|
}
|
|
public void setBlacklist(String blacklist) {
|
this.blacklist = blacklist;
|
}
|
|
public String getBlackUris() {
|
return blackUris;
|
}
|
|
public void setBlackUris(String blackUris) {
|
this.blackUris = blackUris;
|
}
|
|
public String getTempAllowUrls() {
|
return tempAllowUrls;
|
}
|
|
public void setTempAllowUrls(String tempAllowUrls) {
|
this.tempAllowUrls = tempAllowUrls;
|
}
|
|
public String getTempAllowBlackList() {
|
return tempAllowBlackList;
|
}
|
|
public void setTempAllowBlackList(String tempAllowBlackList) {
|
this.tempAllowBlackList = tempAllowBlackList;
|
}
|
}
|