2018-05-22 17:30:52 +08:00
|
|
|
|
/**
|
|
|
|
|
|
*@Title: CfgIndexInfo.java
|
|
|
|
|
|
*@Package com.nis.domain.restful
|
|
|
|
|
|
*@Description 索引公共表
|
|
|
|
|
|
*@author dell
|
|
|
|
|
|
*@date 2018年5月17日 下午16:59:17
|
|
|
|
|
|
*@version 版本号
|
|
|
|
|
|
*/
|
|
|
|
|
|
package com.nis.domain.configuration;
|
|
|
|
|
|
|
|
|
|
|
|
import java.util.List;
|
2018-11-12 18:39:57 +08:00
|
|
|
|
import java.util.Map;
|
|
|
|
|
|
|
2019-01-16 13:55:12 +06:00
|
|
|
|
import com.google.gson.annotations.Expose;
|
2019-01-04 18:28:57 +06:00
|
|
|
|
import com.nis.domain.basics.AsnGroupInfo;
|
2018-08-30 21:21:00 +08:00
|
|
|
|
import com.nis.domain.basics.AsnIpCfg;
|
2019-05-05 15:06:33 +08:00
|
|
|
|
import com.nis.domain.basics.IpCommCfg;
|
2018-11-27 09:54:40 +08:00
|
|
|
|
import com.nis.domain.basics.IpReuseIpCfg;
|
2019-05-05 15:06:33 +08:00
|
|
|
|
import com.nis.domain.basics.UrlCommCfg;
|
2019-01-16 13:55:12 +06:00
|
|
|
|
import com.nis.util.Constants;
|
2018-10-22 15:39:20 +08:00
|
|
|
|
import com.nis.util.excel.ExcelField;
|
2018-08-30 21:21:00 +08:00
|
|
|
|
|
2018-05-22 17:30:52 +08:00
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* @ClassName: CfgIndexInfo.java
|
|
|
|
|
|
* @author (dell)
|
|
|
|
|
|
* @date 2018年5月17日 下午16:59:17
|
|
|
|
|
|
* @version V1.0
|
|
|
|
|
|
*/
|
|
|
|
|
|
public class CfgIndexInfo extends BaseCfg<CfgIndexInfo> {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
*
|
|
|
|
|
|
*/
|
|
|
|
|
|
private static final long serialVersionUID = 2796500715438264119L;
|
2018-05-29 14:59:40 +08:00
|
|
|
|
private static final String tableName="cfg_index_info";
|
2018-10-22 19:15:21 +08:00
|
|
|
|
private String indexTable="cfg_index_info";
|
2018-05-22 17:30:52 +08:00
|
|
|
|
private List<AvVoipAccountCfg> voipAccounts;//Add表单使用
|
2018-08-30 21:21:00 +08:00
|
|
|
|
private List<AsnIpCfg> asnIpCfgs;//Add表单使用
|
2018-05-22 17:30:52 +08:00
|
|
|
|
private List<AvVoipIpCfg> voipIps; //Add表单使用
|
|
|
|
|
|
private AvVoipAccountCfg voipAccount;//Search使用
|
|
|
|
|
|
private AvVoipIpCfg voipIp;//Search使用
|
2018-05-25 13:25:21 +08:00
|
|
|
|
private IpPortCfg ipPort;
|
|
|
|
|
|
private HttpUrlCfg httpUrl;
|
|
|
|
|
|
private HttpReqHeadCfg httpReqHdr;
|
|
|
|
|
|
private HttpResHeadCfg httpResHdr;
|
|
|
|
|
|
private HttpBodyCfg httpReqBody;
|
|
|
|
|
|
private HttpBodyCfg httpResBody;
|
|
|
|
|
|
private List<IpPortCfg> ipPortList;
|
|
|
|
|
|
private List<HttpUrlCfg> httpUrlList;
|
|
|
|
|
|
private List<HttpReqHeadCfg> httpReqHdrList;
|
|
|
|
|
|
private List<HttpResHeadCfg> httpResHdrList;
|
|
|
|
|
|
private List<HttpBodyCfg> httpReqBodyList;
|
|
|
|
|
|
private List<HttpBodyCfg> httpResBodyList;
|
2018-05-31 17:07:26 +08:00
|
|
|
|
private SslKeywordCfg sslCfg;
|
|
|
|
|
|
private List<BaseStringCfg> sslList;
|
2018-06-04 12:43:06 +08:00
|
|
|
|
private List<ComplexkeywordCfg> domainList;
|
2018-06-04 17:29:49 +08:00
|
|
|
|
private List<ComplexkeywordCfg> complexList;
|
|
|
|
|
|
private List<BaseStringCfg> stringList;
|
|
|
|
|
|
private List<FileDigestCfg> digestList;
|
2018-08-17 10:48:18 +08:00
|
|
|
|
private List<NtcSubscribeIdCfg> ntcSubscribeIdCfgList;//新增SUBSCRIBE_ID
|
2018-08-22 10:26:52 +08:00
|
|
|
|
private List<NtcBgpAsCfg> ntcBgpAsCfgList;
|
2018-08-17 10:48:18 +08:00
|
|
|
|
private NtcSubscribeIdCfg ntcSubscribeIdCfg;
|
2018-08-22 10:26:52 +08:00
|
|
|
|
private NtcBgpAsCfg ntcBgpAsCfg;
|
2018-08-21 13:38:26 +08:00
|
|
|
|
private InterceptPktBin interceptPktBin;
|
|
|
|
|
|
private List<InterceptPktBin> interceptPktBinList;
|
2018-10-12 19:31:16 +08:00
|
|
|
|
private AvContUrlCfg avContUrlCfg;
|
|
|
|
|
|
private List<AvContUrlCfg> avContUrlCfgList;
|
2018-11-12 18:39:57 +08:00
|
|
|
|
private BaseStringCfg strCfg;
|
|
|
|
|
|
private ComplexkeywordCfg complexCfg;
|
2018-11-27 09:54:40 +08:00
|
|
|
|
private List<IpReuseIpCfg> ipReuseIpCfgs;
|
2018-06-22 15:59:47 +08:00
|
|
|
|
private Long dnsStrategyId;
|
2018-10-22 15:39:20 +08:00
|
|
|
|
@ExcelField(title="policy_name",sort=21)
|
2018-06-22 15:59:47 +08:00
|
|
|
|
private String dnsStrategyName;
|
2018-08-30 21:21:00 +08:00
|
|
|
|
private Integer asnIpGroup;//asn ip使用的组,仅用来帮助asnIpCfgs中的 ip保存组名,数据库并不需要新增字段
|
|
|
|
|
|
private String asnIpGroupName;
|
2018-08-17 19:31:48 +08:00
|
|
|
|
private P2pHashCfg p2pHash;
|
|
|
|
|
|
private P2pKeywordCfg p2pKeyword;
|
|
|
|
|
|
private List<P2pHashCfg> p2pHashList;
|
|
|
|
|
|
private List<P2pKeywordCfg> p2pKeywordList;
|
2018-10-29 16:29:23 +08:00
|
|
|
|
private Integer sourceCompileId;
|
2018-11-04 15:36:53 +08:00
|
|
|
|
private String searchKeywords;// 列表关键字查询字段
|
|
|
|
|
|
|
2018-11-12 18:39:57 +08:00
|
|
|
|
private Map<String,Object> userRegion;
|
2019-01-04 18:28:57 +06:00
|
|
|
|
private String organization;
|
|
|
|
|
|
private String country;
|
|
|
|
|
|
private String detail;
|
2019-01-06 11:24:49 +08:00
|
|
|
|
private List<AsnKeywordCfg> asnKeywords;
|
2019-01-17 12:46:11 +08:00
|
|
|
|
@ExcelField(title="log_total",sort=42)
|
2019-01-16 13:55:12 +06:00
|
|
|
|
private Long totalLogs;
|
2019-05-05 15:06:33 +08:00
|
|
|
|
private List<UrlCommCfg> urlCommGroupList;
|
|
|
|
|
|
private List<IpCommCfg> ipCommGroupCfgList;
|
2018-11-12 18:39:57 +08:00
|
|
|
|
/*private CachePolicyUserRegion cachePolicyUserRegion;//缓存策略用户自定义域参数
|
|
|
|
|
|
|
|
|
|
|
|
public static class CachePolicyUserRegion{
|
|
|
|
|
|
private CacheKey cache_key;
|
|
|
|
|
|
public static class CecheKey{
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
}*/
|
2019-05-05 15:06:33 +08:00
|
|
|
|
|
2019-01-04 18:28:57 +06:00
|
|
|
|
public String getOrganization() {
|
|
|
|
|
|
return organization;
|
|
|
|
|
|
}
|
2019-05-05 15:06:33 +08:00
|
|
|
|
public List<IpCommCfg> getIpCommGroupCfgList() {
|
|
|
|
|
|
return ipCommGroupCfgList;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setIpCommGroupCfgList(List<IpCommCfg> ipCommGroupCfgList) {
|
|
|
|
|
|
this.ipCommGroupCfgList = ipCommGroupCfgList;
|
|
|
|
|
|
}
|
2019-01-06 11:24:49 +08:00
|
|
|
|
public List<AsnKeywordCfg> getAsnKeywords() {
|
|
|
|
|
|
return asnKeywords;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setAsnKeywords(List<AsnKeywordCfg> asnKeywords) {
|
|
|
|
|
|
this.asnKeywords = asnKeywords;
|
|
|
|
|
|
}
|
2019-01-04 18:28:57 +06:00
|
|
|
|
public void setOrganization(String organization) {
|
|
|
|
|
|
this.organization = organization;
|
|
|
|
|
|
}
|
|
|
|
|
|
public String getCountry() {
|
|
|
|
|
|
return country;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setCountry(String country) {
|
|
|
|
|
|
this.country = country;
|
|
|
|
|
|
}
|
|
|
|
|
|
public String getDetail() {
|
|
|
|
|
|
return detail;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setDetail(String detail) {
|
|
|
|
|
|
this.detail = detail;
|
|
|
|
|
|
}
|
2018-10-29 16:29:23 +08:00
|
|
|
|
public Integer getSourceCompileId() {
|
|
|
|
|
|
return sourceCompileId;
|
|
|
|
|
|
}
|
2018-11-27 09:54:40 +08:00
|
|
|
|
public List<IpReuseIpCfg> getIpReuseIpCfgs() {
|
|
|
|
|
|
return ipReuseIpCfgs;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setIpReuseIpCfgs(List<IpReuseIpCfg> ipReuseIpCfgs) {
|
|
|
|
|
|
this.ipReuseIpCfgs = ipReuseIpCfgs;
|
|
|
|
|
|
}
|
2018-10-29 16:29:23 +08:00
|
|
|
|
public void setSourceCompileId(Integer sourceCompileId) {
|
|
|
|
|
|
this.sourceCompileId = sourceCompileId;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-10-12 19:31:16 +08:00
|
|
|
|
public AvContUrlCfg getAvContUrlCfg() {
|
|
|
|
|
|
return avContUrlCfg;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setAvContUrlCfg(AvContUrlCfg avContUrlCfg) {
|
|
|
|
|
|
this.avContUrlCfg = avContUrlCfg;
|
|
|
|
|
|
}
|
|
|
|
|
|
public List<AvContUrlCfg> getAvContUrlCfgList() {
|
|
|
|
|
|
return avContUrlCfgList;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setAvContUrlCfgList(List<AvContUrlCfg> avContUrlCfgList) {
|
|
|
|
|
|
this.avContUrlCfgList = avContUrlCfgList;
|
|
|
|
|
|
}
|
2018-08-30 21:21:00 +08:00
|
|
|
|
public Integer getAsnIpGroup() {
|
|
|
|
|
|
return asnIpGroup;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setAsnIpGroup(Integer asnIpGroup) {
|
|
|
|
|
|
this.asnIpGroup = asnIpGroup;
|
|
|
|
|
|
}
|
|
|
|
|
|
public String getAsnIpGroupName() {
|
|
|
|
|
|
return asnIpGroupName;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setAsnIpGroupName(String asnIpGroupName) {
|
|
|
|
|
|
this.asnIpGroupName = asnIpGroupName;
|
|
|
|
|
|
}
|
|
|
|
|
|
public List<AsnIpCfg> getAsnIpCfgs() {
|
|
|
|
|
|
return asnIpCfgs;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setAsnIpCfgs(List<AsnIpCfg> asnIpCfgs) {
|
|
|
|
|
|
this.asnIpCfgs = asnIpCfgs;
|
|
|
|
|
|
}
|
2018-08-22 10:26:52 +08:00
|
|
|
|
public NtcBgpAsCfg getNtcBgpAsCfg() {
|
|
|
|
|
|
return ntcBgpAsCfg;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setNtcBgpAsCfg(NtcBgpAsCfg ntcBgpAsCfg) {
|
|
|
|
|
|
this.ntcBgpAsCfg = ntcBgpAsCfg;
|
|
|
|
|
|
}
|
|
|
|
|
|
public List<NtcBgpAsCfg> getNtcBgpAsCfgList() {
|
|
|
|
|
|
return ntcBgpAsCfgList;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setNtcBgpAsCfgList(List<NtcBgpAsCfg> ntcBgpAsCfgList) {
|
|
|
|
|
|
this.ntcBgpAsCfgList = ntcBgpAsCfgList;
|
|
|
|
|
|
}
|
2018-08-21 13:38:26 +08:00
|
|
|
|
public InterceptPktBin getInterceptPktBin() {
|
|
|
|
|
|
return interceptPktBin;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setInterceptPktBin(InterceptPktBin interceptPktBin) {
|
|
|
|
|
|
this.interceptPktBin = interceptPktBin;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setInterceptPktBinList(List<InterceptPktBin> interceptPktBinList) {
|
|
|
|
|
|
this.interceptPktBinList = interceptPktBinList;
|
|
|
|
|
|
}
|
|
|
|
|
|
public List<InterceptPktBin> getInterceptPktBinList() {
|
|
|
|
|
|
return interceptPktBinList;
|
|
|
|
|
|
}
|
2018-08-18 13:12:03 +08:00
|
|
|
|
public List<NtcSubscribeIdCfg> getNtcSubscribeIdCfgList() {
|
|
|
|
|
|
return ntcSubscribeIdCfgList;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setNtcSubscribeIdCfgList(List<NtcSubscribeIdCfg> ntcSubscribeIdCfgList) {
|
|
|
|
|
|
this.ntcSubscribeIdCfgList = ntcSubscribeIdCfgList;
|
|
|
|
|
|
}
|
2018-08-17 10:48:18 +08:00
|
|
|
|
public NtcSubscribeIdCfg getNtcSubscribeIdCfg() {
|
|
|
|
|
|
return ntcSubscribeIdCfg;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setNtcSubscribeIdCfg(NtcSubscribeIdCfg ntcSubscribeIdCfg) {
|
|
|
|
|
|
this.ntcSubscribeIdCfg = ntcSubscribeIdCfg;
|
|
|
|
|
|
}
|
2018-06-22 15:59:47 +08:00
|
|
|
|
public Long getDnsStrategyId() {
|
|
|
|
|
|
return dnsStrategyId;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setDnsStrategyId(Long dnsStrategyId) {
|
|
|
|
|
|
this.dnsStrategyId = dnsStrategyId;
|
|
|
|
|
|
}
|
|
|
|
|
|
public String getDnsStrategyName() {
|
|
|
|
|
|
return dnsStrategyName;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setDnsStrategyName(String dnsStrategyName) {
|
|
|
|
|
|
this.dnsStrategyName = dnsStrategyName;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-05-22 17:30:52 +08:00
|
|
|
|
public AvVoipAccountCfg getVoipAccount() {
|
|
|
|
|
|
return voipAccount;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setVoipAccount(AvVoipAccountCfg voipAccount) {
|
|
|
|
|
|
this.voipAccount = voipAccount;
|
|
|
|
|
|
}
|
|
|
|
|
|
public List<AvVoipAccountCfg> getVoipAccounts() {
|
|
|
|
|
|
return voipAccounts;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setVoipAccounts(List<AvVoipAccountCfg> voipAccounts) {
|
|
|
|
|
|
this.voipAccounts = voipAccounts;
|
|
|
|
|
|
}
|
|
|
|
|
|
public AvVoipIpCfg getVoipIp() {
|
|
|
|
|
|
return voipIp;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setVoipIp(AvVoipIpCfg voipIp) {
|
|
|
|
|
|
this.voipIp = voipIp;
|
|
|
|
|
|
}
|
2018-05-31 17:07:26 +08:00
|
|
|
|
public SslKeywordCfg getSslCfg() {
|
|
|
|
|
|
return sslCfg;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setSslCfg(SslKeywordCfg sslCfg) {
|
|
|
|
|
|
this.sslCfg = sslCfg;
|
|
|
|
|
|
}
|
|
|
|
|
|
public List<BaseStringCfg> getSslList() {
|
|
|
|
|
|
return sslList;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setSslList(List<BaseStringCfg> sslList) {
|
|
|
|
|
|
this.sslList = sslList;
|
|
|
|
|
|
}
|
2018-05-22 17:30:52 +08:00
|
|
|
|
public void setVoipIps(List<AvVoipIpCfg> voipIps) {
|
|
|
|
|
|
this.voipIps = voipIps;
|
|
|
|
|
|
}
|
|
|
|
|
|
public List<AvVoipIpCfg> getVoipIps() {
|
|
|
|
|
|
return voipIps;
|
|
|
|
|
|
}
|
2018-05-25 13:25:21 +08:00
|
|
|
|
public IpPortCfg getIpPort() {
|
|
|
|
|
|
return ipPort;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setIpPort(IpPortCfg ipPort) {
|
|
|
|
|
|
this.ipPort = ipPort;
|
|
|
|
|
|
}
|
|
|
|
|
|
public HttpUrlCfg getHttpUrl() {
|
|
|
|
|
|
return httpUrl;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setHttpUrl(HttpUrlCfg httpUrl) {
|
|
|
|
|
|
this.httpUrl = httpUrl;
|
|
|
|
|
|
}
|
|
|
|
|
|
public HttpReqHeadCfg getHttpReqHdr() {
|
|
|
|
|
|
return httpReqHdr;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setHttpReqHdr(HttpReqHeadCfg httpReqHdr) {
|
|
|
|
|
|
this.httpReqHdr = httpReqHdr;
|
|
|
|
|
|
}
|
|
|
|
|
|
public HttpResHeadCfg getHttpResHdr() {
|
|
|
|
|
|
return httpResHdr;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setHttpResHdr(HttpResHeadCfg httpResHdr) {
|
|
|
|
|
|
this.httpResHdr = httpResHdr;
|
|
|
|
|
|
}
|
|
|
|
|
|
public HttpBodyCfg getHttpReqBody() {
|
|
|
|
|
|
return httpReqBody;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setHttpReqBody(HttpBodyCfg httpReqBody) {
|
|
|
|
|
|
this.httpReqBody = httpReqBody;
|
|
|
|
|
|
}
|
|
|
|
|
|
public HttpBodyCfg getHttpResBody() {
|
|
|
|
|
|
return httpResBody;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setHttpResBody(HttpBodyCfg httpResBody) {
|
|
|
|
|
|
this.httpResBody = httpResBody;
|
|
|
|
|
|
}
|
|
|
|
|
|
public List<IpPortCfg> getIpPortList() {
|
|
|
|
|
|
return ipPortList;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setIpPortList(List<IpPortCfg> ipPortList) {
|
|
|
|
|
|
this.ipPortList = ipPortList;
|
|
|
|
|
|
}
|
|
|
|
|
|
public List<HttpUrlCfg> getHttpUrlList() {
|
|
|
|
|
|
return httpUrlList;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setHttpUrlList(List<HttpUrlCfg> httpUrlList) {
|
|
|
|
|
|
this.httpUrlList = httpUrlList;
|
|
|
|
|
|
}
|
|
|
|
|
|
public List<HttpReqHeadCfg> getHttpReqHdrList() {
|
|
|
|
|
|
return httpReqHdrList;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setHttpReqHdrList(List<HttpReqHeadCfg> httpReqHdrList) {
|
|
|
|
|
|
this.httpReqHdrList = httpReqHdrList;
|
|
|
|
|
|
}
|
|
|
|
|
|
public List<HttpResHeadCfg> getHttpResHdrList() {
|
|
|
|
|
|
return httpResHdrList;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setHttpResHdrList(List<HttpResHeadCfg> httpResHdrList) {
|
|
|
|
|
|
this.httpResHdrList = httpResHdrList;
|
|
|
|
|
|
}
|
|
|
|
|
|
public List<HttpBodyCfg> getHttpReqBodyList() {
|
|
|
|
|
|
return httpReqBodyList;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setHttpReqBodyList(List<HttpBodyCfg> httpReqBodyList) {
|
|
|
|
|
|
this.httpReqBodyList = httpReqBodyList;
|
|
|
|
|
|
}
|
|
|
|
|
|
public List<HttpBodyCfg> getHttpResBodyList() {
|
|
|
|
|
|
return httpResBodyList;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setHttpResBodyList(List<HttpBodyCfg> httpResBodyList) {
|
|
|
|
|
|
this.httpResBodyList = httpResBodyList;
|
|
|
|
|
|
}
|
2018-06-04 12:43:06 +08:00
|
|
|
|
public List<ComplexkeywordCfg> getDomainList() {
|
|
|
|
|
|
return domainList;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setDomainList(List<ComplexkeywordCfg> domainList) {
|
|
|
|
|
|
this.domainList = domainList;
|
|
|
|
|
|
}
|
2018-06-04 17:29:49 +08:00
|
|
|
|
public List<ComplexkeywordCfg> getComplexList() {
|
|
|
|
|
|
return complexList;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setComplexList(List<ComplexkeywordCfg> complexList) {
|
|
|
|
|
|
this.complexList = complexList;
|
|
|
|
|
|
}
|
|
|
|
|
|
public List<BaseStringCfg> getStringList() {
|
|
|
|
|
|
return stringList;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setStringList(List<BaseStringCfg> stringList) {
|
|
|
|
|
|
this.stringList = stringList;
|
|
|
|
|
|
}
|
|
|
|
|
|
public List<FileDigestCfg> getDigestList() {
|
|
|
|
|
|
return digestList;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setDigestList(List<FileDigestCfg> digestList) {
|
|
|
|
|
|
this.digestList = digestList;
|
|
|
|
|
|
}
|
2018-08-17 19:31:48 +08:00
|
|
|
|
public P2pHashCfg getP2pHash() {
|
|
|
|
|
|
return p2pHash;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setP2pHash(P2pHashCfg p2pHash) {
|
|
|
|
|
|
this.p2pHash = p2pHash;
|
|
|
|
|
|
}
|
|
|
|
|
|
public P2pKeywordCfg getP2pKeyword() {
|
|
|
|
|
|
return p2pKeyword;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setP2pKeyword(P2pKeywordCfg p2pKeyword) {
|
|
|
|
|
|
this.p2pKeyword = p2pKeyword;
|
|
|
|
|
|
}
|
|
|
|
|
|
public List<P2pHashCfg> getP2pHashList() {
|
|
|
|
|
|
return p2pHashList;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setP2pHashList(List<P2pHashCfg> p2pHashList) {
|
|
|
|
|
|
this.p2pHashList = p2pHashList;
|
|
|
|
|
|
}
|
|
|
|
|
|
public List<P2pKeywordCfg> getP2pKeywordList() {
|
|
|
|
|
|
return p2pKeywordList;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setP2pKeywordList(List<P2pKeywordCfg> p2pKeywordList) {
|
|
|
|
|
|
this.p2pKeywordList = p2pKeywordList;
|
|
|
|
|
|
}
|
2018-05-29 14:59:40 +08:00
|
|
|
|
public static String getTablename() {
|
|
|
|
|
|
return tableName;
|
|
|
|
|
|
}
|
2018-10-22 19:15:21 +08:00
|
|
|
|
public String getIndexTable() {
|
|
|
|
|
|
return indexTable;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setIndexTable(String indexTable) {
|
|
|
|
|
|
this.indexTable = indexTable;
|
|
|
|
|
|
}
|
2018-11-04 15:36:53 +08:00
|
|
|
|
public String getSearchKeywords() {
|
|
|
|
|
|
return searchKeywords;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setSearchKeywords(String searchKeywords) {
|
|
|
|
|
|
this.searchKeywords = searchKeywords;
|
|
|
|
|
|
}
|
2018-11-12 18:39:57 +08:00
|
|
|
|
public Map<String, Object> getUserRegion() {
|
|
|
|
|
|
return userRegion;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setUserRegion(Map<String, Object> userRegion) {
|
|
|
|
|
|
this.userRegion = userRegion;
|
|
|
|
|
|
}
|
|
|
|
|
|
public BaseStringCfg getStrCfg() {
|
|
|
|
|
|
return strCfg;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setStrCfg(BaseStringCfg strCfg) {
|
|
|
|
|
|
this.strCfg = strCfg;
|
|
|
|
|
|
}
|
|
|
|
|
|
public ComplexkeywordCfg getComplexCfg() {
|
|
|
|
|
|
return complexCfg;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setComplexCfg(ComplexkeywordCfg complexCfg) {
|
|
|
|
|
|
this.complexCfg = complexCfg;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2019-01-16 13:55:12 +06:00
|
|
|
|
public Long getTotalLogs() {
|
|
|
|
|
|
return totalLogs;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public void setTotalLogs(Long totalLogs) {
|
|
|
|
|
|
this.totalLogs = totalLogs;
|
|
|
|
|
|
}
|
2019-05-05 15:06:33 +08:00
|
|
|
|
public List<UrlCommCfg> getUrlCommGroupList() {
|
|
|
|
|
|
return urlCommGroupList;
|
|
|
|
|
|
}
|
|
|
|
|
|
public void setUrlCommGroupList(List<UrlCommCfg> urlCommGroupList) {
|
|
|
|
|
|
this.urlCommGroupList = urlCommGroupList;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2018-05-22 17:30:52 +08:00
|
|
|
|
}
|