@@ -43,6 +43,7 @@ public class CfgIndexInfo extends BaseCfg<CfgIndexInfo> {
|
||||
private List<HttpBodyCfg> httpResBodyList;
|
||||
private SslKeywordCfg sslCfg;
|
||||
private List<BaseStringCfg> sslList;
|
||||
private List<ComplexkeywordCfg> domainList;
|
||||
|
||||
public AvVoipAccountCfg getVoipAccount() {
|
||||
return voipAccount;
|
||||
@@ -152,6 +153,12 @@ public class CfgIndexInfo extends BaseCfg<CfgIndexInfo> {
|
||||
public void setHttpResBodyList(List<HttpBodyCfg> httpResBodyList) {
|
||||
this.httpResBodyList = httpResBodyList;
|
||||
}
|
||||
public List<ComplexkeywordCfg> getDomainList() {
|
||||
return domainList;
|
||||
}
|
||||
public void setDomainList(List<ComplexkeywordCfg> domainList) {
|
||||
this.domainList = domainList;
|
||||
}
|
||||
public static String getTablename() {
|
||||
return tableName;
|
||||
}
|
||||
|
||||
@@ -11,8 +11,6 @@ package com.nis.domain.maat;
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
import org.codehaus.jackson.annotate.JsonIgnoreProperties;
|
||||
|
||||
/**
|
||||
* @ClassName: ToMaatResult.java
|
||||
* @Description: TODO
|
||||
@@ -20,7 +18,6 @@ import org.codehaus.jackson.annotate.JsonIgnoreProperties;
|
||||
* @date 2018年3月27日 下午5:10:01
|
||||
* @version V1.0
|
||||
*/
|
||||
@JsonIgnoreProperties(ignoreUnknown=true)
|
||||
public class ToMaatResult implements Serializable{
|
||||
/**
|
||||
* @Fields serialVersionUID:TODO(用一句话描述这个变量表示什么)
|
||||
@@ -35,7 +32,6 @@ public class ToMaatResult implements Serializable{
|
||||
private String msg;
|
||||
private String fromuri;
|
||||
private ResponseData data;
|
||||
@JsonIgnoreProperties(ignoreUnknown=true)
|
||||
public static class ResponseData{
|
||||
private String sourceName;
|
||||
private Integer num;
|
||||
@@ -44,6 +40,13 @@ public class ToMaatResult implements Serializable{
|
||||
private Long rawLen;
|
||||
private String digest;
|
||||
private List configCompileList;
|
||||
private List updateStatCfgList;
|
||||
public List getUpdateStatCfgList() {
|
||||
return updateStatCfgList;
|
||||
}
|
||||
public void setUpdateStatCfgList(List updateStatCfgList) {
|
||||
this.updateStatCfgList = updateStatCfgList;
|
||||
}
|
||||
public String getSourceName() {
|
||||
return sourceName;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user