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;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @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-05-22 17:30:52 +08:00
|
|
|
private List<AvVoipAccountCfg> voipAccounts;//Add表单使用
|
|
|
|
|
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-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-05-29 14:59:40 +08:00
|
|
|
public static String getTablename() {
|
|
|
|
|
return tableName;
|
|
|
|
|
}
|
2018-05-22 17:30:52 +08:00
|
|
|
}
|