fix(all):清除历史无用日志处理类
This commit is contained in:
@@ -1,104 +0,0 @@
|
||||
/**
|
||||
* @Title: DfDnsLog.java
|
||||
* @Package com.nis.domain.restful
|
||||
* @Description: TODO(用一句话描述该文件做什么)
|
||||
* @author (ddm)
|
||||
* @date 2016年9月7日 上午10:16:30
|
||||
* @version V1.0
|
||||
*/
|
||||
package com.nis.domain.restful;
|
||||
|
||||
import com.nis.domain.LogEntity;
|
||||
import com.wordnik.swagger.annotations.ApiModelProperty;
|
||||
|
||||
/**
|
||||
* @ClassName: DfDnsLog
|
||||
* @Description: DNSXX日志
|
||||
* @author (ddm)
|
||||
* @date 2016年9月7日 上午11:41:50
|
||||
* @version V1.0
|
||||
*/
|
||||
public class DfDnsLog extends LogEntity<DfDnsLog>{
|
||||
|
||||
/**
|
||||
* @Fields serialVersionUID : TODO(用一句话描述这个变量表示什么)
|
||||
*/
|
||||
private static final long serialVersionUID = 4159362642752335782L;
|
||||
|
||||
|
||||
@ApiModelProperty(value="递归请求", required=true)
|
||||
protected Long rd;
|
||||
@ApiModelProperty(value="查询类型", required=true)
|
||||
protected Long qtype;
|
||||
@ApiModelProperty(value="查询类", required=true)
|
||||
protected Long qclass;
|
||||
@ApiModelProperty(value="OPCODE", required=true)
|
||||
protected Long opcode;
|
||||
@ApiModelProperty(value="查询内容", required=true)
|
||||
protected String qname;
|
||||
@ApiModelProperty(value="欺骗包的应答类型", required=true)
|
||||
protected String cheatType;
|
||||
@ApiModelProperty(value="欺骗包RCODE", required=true)
|
||||
protected Long cheatRcode;
|
||||
@ApiModelProperty(value="欺骗策略", required=true)
|
||||
protected String cheatStrategy;
|
||||
@ApiModelProperty(value="欺骗记录", required=true)
|
||||
protected String cheatRr;
|
||||
public Long getRd() {
|
||||
return rd;
|
||||
}
|
||||
public void setRd(Long rd) {
|
||||
this.rd = rd;
|
||||
}
|
||||
public Long getQtype() {
|
||||
return qtype;
|
||||
}
|
||||
public void setQtype(Long qtype) {
|
||||
this.qtype = qtype;
|
||||
}
|
||||
public Long getQclass() {
|
||||
return qclass;
|
||||
}
|
||||
public void setQclass(Long qclass) {
|
||||
this.qclass = qclass;
|
||||
}
|
||||
public Long getOpcode() {
|
||||
return opcode;
|
||||
}
|
||||
public void setOpcode(Long opcode) {
|
||||
this.opcode = opcode;
|
||||
}
|
||||
public String getQname() {
|
||||
return qname;
|
||||
}
|
||||
public void setQname(String qname) {
|
||||
this.qname = qname;
|
||||
}
|
||||
public void setCheatRcode(Long cheatRcode) {
|
||||
this.cheatRcode = cheatRcode;
|
||||
}
|
||||
public void setCheatType(String cheatType) {
|
||||
this.cheatType = cheatType;
|
||||
}
|
||||
public Long getCheatRcode() {
|
||||
return cheatRcode;
|
||||
}
|
||||
public String getCheatType() {
|
||||
return cheatType;
|
||||
}
|
||||
public String getCheatStrategy() {
|
||||
return cheatStrategy;
|
||||
}
|
||||
public void setCheatStrategy(String cheatStrategy) {
|
||||
this.cheatStrategy = cheatStrategy;
|
||||
}
|
||||
public String getCheatRr() {
|
||||
return cheatRr;
|
||||
}
|
||||
public void setCheatRr(String cheatRr) {
|
||||
this.cheatRr = cheatRr;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
@@ -1,40 +0,0 @@
|
||||
/**
|
||||
* @Title: DfFtpLog.java
|
||||
* @Package com.nis.domain.restful
|
||||
* @Description: TODO(用一句话描述该文件做什么)
|
||||
* @author (ddm)
|
||||
* @date 2016年9月7日 上午10:16:30
|
||||
* @version V1.0
|
||||
*/
|
||||
package com.nis.domain.restful;
|
||||
|
||||
import com.nis.domain.LogEntity;
|
||||
import com.wordnik.swagger.annotations.ApiModelProperty;
|
||||
|
||||
/**
|
||||
* @ClassName: DfFtpLog
|
||||
* @Description: FTPXX日志
|
||||
* @author (ddm)
|
||||
* @date 2016年9月7日 上午12:13:24
|
||||
* @version V1.0
|
||||
*/
|
||||
public class DfFtpLog extends LogEntity<DfFtpLog>{
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
/**
|
||||
* @Fields serialVersionUID : TODO(用一句话描述这个变量表示什么)
|
||||
*/
|
||||
private static final long serialVersionUID = -3468485265584781756L;
|
||||
|
||||
@ApiModelProperty(value="FTP链接", required=true)
|
||||
protected String ftpUrl;
|
||||
|
||||
public String getFtpUrl() {
|
||||
return ftpUrl;
|
||||
}
|
||||
public void setFtpUrl(String ftpUrl) {
|
||||
this.ftpUrl = ftpUrl;
|
||||
}
|
||||
}
|
||||
@@ -1,268 +0,0 @@
|
||||
/**
|
||||
*@Title: DfIpPortUdp.java
|
||||
*@Package com.nis.domain.restful
|
||||
*@Description TODO
|
||||
*@author dell
|
||||
*@date 2016<31>?9<>?13<31>? 上午9:11:55
|
||||
*@version 版本<E78988>?
|
||||
*/
|
||||
package com.nis.domain.restful;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonIgnore;
|
||||
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
||||
import com.nis.domain.BaseEntity;
|
||||
import com.nis.util.JsonDateSerializer;
|
||||
import com.wordnik.swagger.annotations.ApiModelProperty;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.util.Date;
|
||||
|
||||
/**
|
||||
* @ClassName: DfIpPortUdp.java
|
||||
* @Description: TODO
|
||||
* @author (wx)
|
||||
* @date 2016<31>?9<>?13<31>? 上午9:11:55
|
||||
* @version V1.0
|
||||
*/
|
||||
public class DfIpPortUdp extends BaseEntity<DfIpPortUdp>{
|
||||
/**
|
||||
* @Fields serialVersionUID:TODO(用<EFBC88>?句话描述这个变量表示<E8A1A8>?么)
|
||||
*
|
||||
* @since 1.0.0
|
||||
*/
|
||||
|
||||
private static final long serialVersionUID = -6162892672391456265L;
|
||||
@ApiModelProperty(value="序号", required=true)
|
||||
private Long cfgId;
|
||||
@ApiModelProperty(value="地址类型", required=true)
|
||||
private Integer addrType;
|
||||
@ApiModelProperty(value="源IP", required=true)
|
||||
private String srcIp;
|
||||
@ApiModelProperty(value="源IP掩码", required=true)
|
||||
private String maskSrcIp;
|
||||
@ApiModelProperty(value="源端口", required=true)
|
||||
private String srcPort;
|
||||
@ApiModelProperty(value="源端口掩码", required=true)
|
||||
private String maskSrcPort;
|
||||
@ApiModelProperty(value="目的IP", required=true)
|
||||
private String dstIp;
|
||||
@ApiModelProperty(value="目的IP掩码", required=true)
|
||||
private String maskDstIp;
|
||||
@ApiModelProperty(value="目的端口", required=true)
|
||||
private String dstPort;
|
||||
@ApiModelProperty(value="目的端口掩码", required=true)
|
||||
private String maskDstPort;
|
||||
@ApiModelProperty(value="协议udp,固定为0", required=true)
|
||||
private Integer protocol;
|
||||
@ApiModelProperty(value="方向,0双向,1单向", required=true)
|
||||
private Integer direction;
|
||||
@ApiModelProperty(value="有效标志, 0无效,1有效", required=true)
|
||||
private Integer isValid;
|
||||
@ApiModelProperty(value="序号", required=true)
|
||||
private Date opTime;
|
||||
@ApiModelProperty(value="生效范围", required=true)
|
||||
private String effectiveRange;
|
||||
@ApiModelProperty(value="生效系统", required=true)
|
||||
private Integer activeSys;
|
||||
private Date lastUpdate;
|
||||
private Long procSeq;
|
||||
|
||||
/**
|
||||
* effectiveRange
|
||||
* @return effectiveRange
|
||||
*/
|
||||
|
||||
public String getEffectiveRange() {
|
||||
return effectiveRange;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param effectiveRange the effectiveRange to set
|
||||
*/
|
||||
public void setEffectiveRange(String effectiveRange) {
|
||||
this.effectiveRange = effectiveRange;
|
||||
}
|
||||
|
||||
/**
|
||||
* activeSys
|
||||
* @return activeSys
|
||||
*/
|
||||
|
||||
public Integer getActiveSys() {
|
||||
return activeSys;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param activeSys the activeSys to set
|
||||
*/
|
||||
public void setActiveSys(Integer activeSys) {
|
||||
this.activeSys = activeSys;
|
||||
}
|
||||
|
||||
/**
|
||||
* lastUpdate
|
||||
* @return lastUpdate
|
||||
*/
|
||||
@JsonIgnore
|
||||
public Date getLastUpdate() {
|
||||
return lastUpdate;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param lastUpdate the lastUpdate to set
|
||||
*/
|
||||
public void setLastUpdate(Date lastUpdate) {
|
||||
this.lastUpdate = lastUpdate;
|
||||
}
|
||||
|
||||
/**
|
||||
* procSeq
|
||||
* @return procSeq
|
||||
*/
|
||||
@JsonIgnore
|
||||
public Long getProcSeq() {
|
||||
return procSeq;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param procSeq the procSeq to set
|
||||
*/
|
||||
public void setProcSeq(Long procSeq) {
|
||||
this.procSeq = procSeq;
|
||||
}
|
||||
|
||||
/* (non-Javadoc)
|
||||
* @see com.nis.domain.BaseEntity#getId()
|
||||
*/
|
||||
@Override
|
||||
@JsonIgnore
|
||||
public Long getId() {
|
||||
// TODO Auto-generated method stub
|
||||
return super.getId();
|
||||
}
|
||||
|
||||
/* (non-Javadoc)
|
||||
* @see com.nis.domain.BaseEntity#setId(java.lang.Long)
|
||||
*/
|
||||
@Override
|
||||
@JsonIgnore
|
||||
public void setId(Long id) {
|
||||
// TODO Auto-generated method stub
|
||||
super.setId(id);
|
||||
}
|
||||
|
||||
public Long getCfgId() {
|
||||
return cfgId;
|
||||
}
|
||||
|
||||
public void setCfgId(Long cfgId) {
|
||||
this.cfgId = cfgId;
|
||||
}
|
||||
|
||||
public Integer getAddrType() {
|
||||
return addrType;
|
||||
}
|
||||
|
||||
public void setAddrType(Integer addrType) {
|
||||
this.addrType = addrType;
|
||||
}
|
||||
|
||||
public String getSrcIp() {
|
||||
return srcIp;
|
||||
}
|
||||
|
||||
public void setSrcIp(String srcIp) {
|
||||
this.srcIp = srcIp == null ? null : srcIp.trim();
|
||||
}
|
||||
|
||||
public String getMaskSrcIp() {
|
||||
return maskSrcIp;
|
||||
}
|
||||
|
||||
public void setMaskSrcIp(String maskSrcIp) {
|
||||
this.maskSrcIp = maskSrcIp == null ? null : maskSrcIp.trim();
|
||||
}
|
||||
|
||||
public String getSrcPort() {
|
||||
return srcPort;
|
||||
}
|
||||
|
||||
public void setSrcPort(String srcPort) {
|
||||
this.srcPort = srcPort == null ? null : srcPort.trim();
|
||||
}
|
||||
|
||||
public String getMaskSrcPort() {
|
||||
return maskSrcPort;
|
||||
}
|
||||
|
||||
public void setMaskSrcPort(String maskSrcPort) {
|
||||
this.maskSrcPort = maskSrcPort == null ? null : maskSrcPort.trim();
|
||||
}
|
||||
|
||||
public String getDstIp() {
|
||||
return dstIp;
|
||||
}
|
||||
|
||||
public void setDstIp(String dstIp) {
|
||||
this.dstIp = dstIp == null ? null : dstIp.trim();
|
||||
}
|
||||
|
||||
public String getMaskDstIp() {
|
||||
return maskDstIp;
|
||||
}
|
||||
|
||||
public void setMaskDstIp(String maskDstIp) {
|
||||
this.maskDstIp = maskDstIp == null ? null : maskDstIp.trim();
|
||||
}
|
||||
|
||||
public String getDstPort() {
|
||||
return dstPort;
|
||||
}
|
||||
|
||||
public void setDstPort(String dstPort) {
|
||||
this.dstPort = dstPort == null ? null : dstPort.trim();
|
||||
}
|
||||
|
||||
public String getMaskDstPort() {
|
||||
return maskDstPort;
|
||||
}
|
||||
|
||||
public void setMaskDstPort(String maskDstPort) {
|
||||
this.maskDstPort = maskDstPort == null ? null : maskDstPort.trim();
|
||||
}
|
||||
|
||||
public Integer getProtocol() {
|
||||
return protocol;
|
||||
}
|
||||
|
||||
public void setProtocol(Integer protocol) {
|
||||
this.protocol = protocol;
|
||||
}
|
||||
|
||||
public Integer getDirection() {
|
||||
return direction;
|
||||
}
|
||||
|
||||
public void setDirection(Integer direction) {
|
||||
this.direction = direction;
|
||||
}
|
||||
|
||||
public Integer getIsValid() {
|
||||
return isValid;
|
||||
}
|
||||
|
||||
public void setIsValid(Integer isValid) {
|
||||
this.isValid = isValid;
|
||||
}
|
||||
@JsonSerialize(using=JsonDateSerializer.class)
|
||||
public Date getOpTime() {
|
||||
return opTime;
|
||||
}
|
||||
|
||||
public void setOpTime(Date opTime) {
|
||||
this.opTime = opTime;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
@@ -1,128 +0,0 @@
|
||||
/**
|
||||
*@Title: DfIpPortUdpSource.java
|
||||
*@Package com.nis.domain.restful
|
||||
*@Description TODO
|
||||
*@author dell
|
||||
*@date 2016年9月13日 上午9:12:48
|
||||
*@version 版本号
|
||||
*/
|
||||
package com.nis.domain.restful;
|
||||
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* @ClassName: DfIpPortUdpSource.java
|
||||
* @Description: TODO
|
||||
* @author (dell)
|
||||
* @date 2016年9月13日 上午9:12:48
|
||||
* @version V1.0
|
||||
*/
|
||||
public class DfIpPortUdpSource extends ConfigCommonSource{
|
||||
|
||||
/**
|
||||
* @Fields serialVersionUID:TODO(用一句话描述这个变量表示什么)
|
||||
*
|
||||
* @since 1.0.0
|
||||
*/
|
||||
|
||||
private static final long serialVersionUID = 5423347084696349283L;
|
||||
private static final String DEFAULT_VERSION = "1.0";
|
||||
private List<DfIpPortUdp> dfIpPortUdpList;
|
||||
|
||||
/**
|
||||
* 创建一个新的实例 DfIpPortUdpSource.
|
||||
*
|
||||
*/
|
||||
public DfIpPortUdpSource() {
|
||||
super();
|
||||
// TODO Auto-generated constructor stub
|
||||
this.version=DEFAULT_VERSION;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 创建一个新的实例 DfIpPortUdpSource.
|
||||
*
|
||||
*/
|
||||
public DfIpPortUdpSource(String version) {
|
||||
this.version=version;
|
||||
}
|
||||
/**
|
||||
* @return version
|
||||
*/
|
||||
public String getVersion() {
|
||||
return version;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param version 要设置的 version
|
||||
*/
|
||||
public void setVersion(String version) {
|
||||
this.version = version;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return operator
|
||||
*/
|
||||
public String getOperator() {
|
||||
return operator;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param operator 要设置的 operator
|
||||
*/
|
||||
public void setOperator(String operator) {
|
||||
this.operator = operator;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @return opTime
|
||||
*/
|
||||
public Date getOpTime() {
|
||||
return opTime;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param opTime 要设置的 opTime
|
||||
*/
|
||||
public void setOpTime(Date opTime) {
|
||||
this.opTime = opTime;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* @return opAction
|
||||
*/
|
||||
public Integer getOpAction() {
|
||||
return opAction;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param opAction 要设置的 opAction
|
||||
*/
|
||||
public void setOpAction(Integer opAction) {
|
||||
this.opAction = opAction;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* dfIpPortUdpList
|
||||
* @return dfIpPortUdpList
|
||||
*/
|
||||
|
||||
public List<DfIpPortUdp> getDfIpPortUdpList() {
|
||||
return dfIpPortUdpList;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @param dfIpPortUdpList the dfIpPortUdpList to set
|
||||
*/
|
||||
public void setDfIpPortUdpList(List<DfIpPortUdp> dfIpPortUdpList) {
|
||||
this.dfIpPortUdpList = dfIpPortUdpList;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,56 +0,0 @@
|
||||
/**
|
||||
* @Title: DfIpsecLog.java
|
||||
* @Package com.nis.domain.restful
|
||||
* @Description: TODO(用一句话描述该文件做什么)
|
||||
* @author (ddm)
|
||||
* @date 2016年9月7日 下午1:57:20
|
||||
* @version V1.0
|
||||
*/
|
||||
package com.nis.domain.restful;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonIgnore;
|
||||
import com.nis.domain.LogEntity;
|
||||
import com.wordnik.swagger.annotations.ApiModelProperty;
|
||||
|
||||
/**
|
||||
* @ClassName: DfIpsecLog
|
||||
* @Description: FTPXX日志
|
||||
* @author (ddm)
|
||||
* @date 2016年9月7日 下午1:57:20
|
||||
* @version V1.0
|
||||
*/
|
||||
public class DfIpsecLog extends LogEntity<DfIpsecLog>{
|
||||
/**
|
||||
* @Fields serialVersionUID : TODO(用一句话描述这个变量表示什么)
|
||||
*/
|
||||
private static final long serialVersionUID = 1960565928453529561L;
|
||||
|
||||
@ApiModelProperty(value="交换协议", required=true)
|
||||
protected Integer exProtocol;
|
||||
@ApiModelProperty(value="ISAKMP模式", required=true)
|
||||
protected Long isakmpMode;
|
||||
|
||||
protected String searchExProtocol;
|
||||
|
||||
@JsonIgnore
|
||||
public String getSearchExProtocol() {
|
||||
return searchExProtocol;
|
||||
}
|
||||
public void setSearchExProtocol(String searchExProtocol) {
|
||||
this.searchExProtocol = searchExProtocol;
|
||||
}
|
||||
|
||||
public Integer getExProtocol() {
|
||||
return exProtocol;
|
||||
}
|
||||
public void setExProtocol(Integer exProtocol) {
|
||||
this.exProtocol = exProtocol;
|
||||
}
|
||||
|
||||
public Long getIsakmpMode() {
|
||||
return isakmpMode;
|
||||
}
|
||||
public void setIsakmpMode(Long isakmpMode) {
|
||||
this.isakmpMode = isakmpMode;
|
||||
}
|
||||
}
|
||||
@@ -1,132 +0,0 @@
|
||||
/**
|
||||
* @Title: DfKeyConvertUrl.java
|
||||
* @Package com.nis.domain.restful
|
||||
* @Description: 关键字业务转换URL日志
|
||||
* @author (DDM)
|
||||
* @date 2016年9月27日 上午9:27:30
|
||||
* @version V1.0
|
||||
*/
|
||||
package com.nis.domain.restful;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
|
||||
import javax.xml.bind.annotation.XmlTransient;
|
||||
|
||||
import org.apache.commons.lang3.builder.ReflectionToStringBuilder;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonIgnore;
|
||||
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
||||
import com.nis.domain.Page;
|
||||
import com.nis.util.JsonDateSerializer;
|
||||
import com.wordnik.swagger.annotations.ApiModelProperty;
|
||||
|
||||
/**
|
||||
* @ClassName: DfKeyConvertUrl
|
||||
* @Description: 关键字业务转换URL日志
|
||||
* @author (DDM)
|
||||
* @date 2016年9月27日 上午9:27:30
|
||||
* @version V1.0
|
||||
*/
|
||||
public class DfKeyConvertUrl implements Serializable {
|
||||
|
||||
/**
|
||||
* @Fields serialVersionUID : TODO(用一句话描述这个变量表示什么)
|
||||
*/
|
||||
private static final long serialVersionUID = 7985571037717090551L;
|
||||
|
||||
@ApiModelProperty(value="序列号", required=true)
|
||||
protected Integer id;
|
||||
@ApiModelProperty(value="命中关键字ID", required=true)
|
||||
protected Integer keyId;
|
||||
@ApiModelProperty(value="URL地址", required=true)
|
||||
protected String url;
|
||||
@ApiModelProperty(value="操作时间", required=true)
|
||||
protected Date opTime;
|
||||
|
||||
|
||||
protected String searchId;
|
||||
protected String optStartTime;
|
||||
protected String optEndTime;
|
||||
|
||||
@JsonIgnore
|
||||
public String getOptStartTime() {
|
||||
return optStartTime;
|
||||
}
|
||||
public void setOptStartTime(String optStartTime) {
|
||||
this.optStartTime = optStartTime;
|
||||
}
|
||||
|
||||
@JsonIgnore
|
||||
public String getOptEndTime() {
|
||||
return optEndTime;
|
||||
}
|
||||
public void setOptEndTime(String optEndTime) {
|
||||
this.optEndTime = optEndTime;
|
||||
}
|
||||
@JsonIgnore
|
||||
public String getSearchId() {
|
||||
return searchId;
|
||||
}
|
||||
public void setSearchId(String searchId) {
|
||||
this.searchId = searchId;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 当前实体分页对象
|
||||
*/
|
||||
protected Page<DfKeyConvertUrl> page;
|
||||
|
||||
|
||||
@JsonIgnore
|
||||
@XmlTransient
|
||||
public Page<DfKeyConvertUrl> getPage() {
|
||||
if (page == null){
|
||||
page = new Page<DfKeyConvertUrl>();
|
||||
}
|
||||
return page;
|
||||
}
|
||||
|
||||
public Page<DfKeyConvertUrl> setPage(Page<DfKeyConvertUrl> page) {
|
||||
this.page = page;
|
||||
return page;
|
||||
}
|
||||
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
public Integer getKeyId() {
|
||||
return keyId;
|
||||
}
|
||||
public void setKeyId(Integer keyId) {
|
||||
this.keyId = keyId;
|
||||
}
|
||||
|
||||
public String getUrl() {
|
||||
return url;
|
||||
}
|
||||
public void setUrl(String url) {
|
||||
this.url = url;
|
||||
}
|
||||
|
||||
@JsonSerialize(using=JsonDateSerializer.class)
|
||||
public Date getOpTime() {
|
||||
return opTime;
|
||||
}
|
||||
public void setOpTime(Date opTime) {
|
||||
this.opTime = opTime;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return ReflectionToStringBuilder.toString(this);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,134 +0,0 @@
|
||||
/**
|
||||
* @Title: DfKeyMailAdd.java
|
||||
* @Package com.nis.domain.restful
|
||||
* @Description: 关键字业务转换邮件地址日志
|
||||
* @author (ZBC)
|
||||
* @date 2016年11月09日 下午02:25:00
|
||||
* @version V1.0
|
||||
*/
|
||||
package com.nis.domain.restful;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
|
||||
import javax.xml.bind.annotation.XmlTransient;
|
||||
|
||||
import org.apache.commons.lang3.builder.ReflectionToStringBuilder;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonIgnore;
|
||||
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
||||
import com.nis.domain.Page;
|
||||
import com.nis.util.JsonDateSerializer;
|
||||
import com.wordnik.swagger.annotations.ApiModelProperty;
|
||||
|
||||
/**
|
||||
* @ClassName: DfKeyMailAdd
|
||||
* @Description: 关键字业务转换邮件地址日志
|
||||
* @author (ZBC)
|
||||
* @date 2016年11月09日 下午02:25:00
|
||||
* @version V1.0
|
||||
*/
|
||||
public class DfKeyMailAdd implements Serializable {
|
||||
|
||||
/**
|
||||
* serialVersionUID
|
||||
*/
|
||||
private static final long serialVersionUID = -2380470456434492094L;
|
||||
|
||||
|
||||
@ApiModelProperty(value = "序列号", required = true)
|
||||
protected Integer id;
|
||||
@ApiModelProperty(value = "命中关键字ID", required = true)
|
||||
protected Integer keyId;
|
||||
@ApiModelProperty(value = "邮件地址", required = true)
|
||||
protected String mailAddr;
|
||||
@ApiModelProperty(value = "操作时间", required = true)
|
||||
protected Date opTime;
|
||||
|
||||
protected String searchId;
|
||||
protected String optStartTime;
|
||||
protected String optEndTime;
|
||||
|
||||
@JsonIgnore
|
||||
public String getSearchId() {
|
||||
return searchId;
|
||||
}
|
||||
public void setSearchId(String searchId) {
|
||||
this.searchId = searchId;
|
||||
}
|
||||
@JsonIgnore
|
||||
public String getOptStartTime() {
|
||||
return optStartTime;
|
||||
}
|
||||
|
||||
public void setOptStartTime(String optStartTime) {
|
||||
this.optStartTime = optStartTime;
|
||||
}
|
||||
|
||||
@JsonIgnore
|
||||
public String getOptEndTime() {
|
||||
return optEndTime;
|
||||
}
|
||||
|
||||
public void setOptEndTime(String optEndTime) {
|
||||
this.optEndTime = optEndTime;
|
||||
}
|
||||
|
||||
/**
|
||||
* 当前实体分页对象
|
||||
*/
|
||||
protected Page<DfKeyMailAdd> page;
|
||||
|
||||
@JsonIgnore
|
||||
@XmlTransient
|
||||
public Page<DfKeyMailAdd> getPage() {
|
||||
if (page == null) {
|
||||
page = new Page<DfKeyMailAdd>();
|
||||
}
|
||||
return page;
|
||||
}
|
||||
|
||||
public Page<DfKeyMailAdd> setPage(Page<DfKeyMailAdd> page) {
|
||||
this.page = page;
|
||||
return page;
|
||||
}
|
||||
|
||||
public Integer getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Integer getKeyId() {
|
||||
return keyId;
|
||||
}
|
||||
|
||||
public void setKeyId(Integer keyId) {
|
||||
this.keyId = keyId;
|
||||
}
|
||||
|
||||
public String getMailAddr() {
|
||||
return mailAddr;
|
||||
}
|
||||
|
||||
public void setMailAddr(String mailAddr) {
|
||||
this.mailAddr = mailAddr;
|
||||
}
|
||||
|
||||
@JsonSerialize(using = JsonDateSerializer.class)
|
||||
public Date getOpTime() {
|
||||
return opTime;
|
||||
}
|
||||
|
||||
public void setOpTime(Date opTime) {
|
||||
this.opTime = opTime;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return ReflectionToStringBuilder.toString(this);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,71 +0,0 @@
|
||||
/**
|
||||
* @Title: DfL2tpLog.java
|
||||
* @Package com.nis.domain.restful
|
||||
* @Description: TODO(用一句话描述该文件做什么)
|
||||
* @author (ddm)
|
||||
* @date 2016年9月7日 下午1:23:30
|
||||
* @version V1.0
|
||||
*/
|
||||
package com.nis.domain.restful;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonIgnore;
|
||||
import com.nis.domain.LogEntity;
|
||||
import com.wordnik.swagger.annotations.ApiModelProperty;
|
||||
|
||||
/**
|
||||
* @ClassName: DfL2tpLog
|
||||
* @Description: FTPXX日志
|
||||
* @author (ddm)
|
||||
* @date 2016年9月7日 下午1:23:30
|
||||
* @version V1.0
|
||||
*/
|
||||
public class DfL2tpLog extends LogEntity<DfL2tpLog>{
|
||||
/**
|
||||
* @Fields serialVersionUID : TODO(用一句话描述这个变量表示什么)
|
||||
*/
|
||||
private static final long serialVersionUID = -6210309297068552716L;
|
||||
|
||||
@ApiModelProperty(value="通道类型", required=true)
|
||||
protected Integer tunnelType;
|
||||
@ApiModelProperty(value="加密方式", required=true)
|
||||
protected Integer encryptMode;
|
||||
@ApiModelProperty(value="用户名称", required=true)
|
||||
protected String chapName;
|
||||
@ApiModelProperty(value="内容类型", required=true)
|
||||
protected Integer contentType;
|
||||
|
||||
public String getChapName() {
|
||||
return chapName;
|
||||
}
|
||||
public void setChapName(String chapName) {
|
||||
this.chapName = chapName;
|
||||
}
|
||||
protected String searchEncryptMode;
|
||||
|
||||
@JsonIgnore
|
||||
public String getSearchEncryptMode() {
|
||||
return searchEncryptMode;
|
||||
}
|
||||
public void setSearchEncryptMode(String searchEncryptMode) {
|
||||
this.searchEncryptMode = searchEncryptMode;
|
||||
}
|
||||
|
||||
public Integer getTunnelType() {
|
||||
return tunnelType;
|
||||
}
|
||||
public void setTunnelType(Integer tunnelType) {
|
||||
this.tunnelType = tunnelType;
|
||||
}
|
||||
public Integer getEncryptMode() {
|
||||
return encryptMode;
|
||||
}
|
||||
public void setEncryptMode(Integer encryptMode) {
|
||||
this.encryptMode = encryptMode;
|
||||
}
|
||||
public Integer getContentType() {
|
||||
return contentType;
|
||||
}
|
||||
public void setContentType(Integer contentType) {
|
||||
this.contentType = contentType;
|
||||
}
|
||||
}
|
||||
@@ -1,91 +0,0 @@
|
||||
/**
|
||||
* @Title: DfMailLog.java
|
||||
* @Package com.nis.domain.restful
|
||||
* @Description: TODO(用一句话描述该文件做什么)
|
||||
* @author (ddm)
|
||||
* @date 2016年9月7日 上午10:16:30
|
||||
* @version V1.0
|
||||
*/
|
||||
package com.nis.domain.restful;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonIgnore;
|
||||
import com.nis.domain.LogEntity;
|
||||
import com.wordnik.swagger.annotations.ApiModelProperty;
|
||||
|
||||
/**
|
||||
* @ClassName: DfMailLog
|
||||
* @Description: MAILXX日志
|
||||
* @author (ddm)
|
||||
* @date 2016年9月7日 上午10:59:09
|
||||
* @version V1.0
|
||||
*/
|
||||
public class DfMailLog extends LogEntity<DfMailLog>{
|
||||
|
||||
/**
|
||||
* @Fields serialVersionUID : TODO(用一句话描述这个变量表示什么)
|
||||
*/
|
||||
private static final long serialVersionUID = 4734386604389185710L;
|
||||
|
||||
|
||||
@ApiModelProperty(value="邮件协议类型", required=true)
|
||||
protected String mailProto;
|
||||
@ApiModelProperty(value="发件人", required=true)
|
||||
protected String mailFrom;
|
||||
@ApiModelProperty(value="收件人", required=true)
|
||||
protected String mailTo;
|
||||
@ApiModelProperty(value="主题", required=true)
|
||||
protected String subject;
|
||||
@ApiModelProperty(value="EML文件转储路径", required=true)
|
||||
protected String emlFile;
|
||||
|
||||
protected String searchMailFrom;
|
||||
protected String searchMailTo;
|
||||
|
||||
@JsonIgnore
|
||||
public String getSearchMailFrom() {
|
||||
return searchMailFrom;
|
||||
}
|
||||
public void setSearchMailFrom(String searchMailFrom) {
|
||||
this.searchMailFrom = searchMailFrom;
|
||||
}
|
||||
public void setSearchMailTo(String searchMailTo) {
|
||||
this.searchMailTo = searchMailTo;
|
||||
}
|
||||
@JsonIgnore
|
||||
public String getSearchMailTo() {
|
||||
return searchMailTo;
|
||||
}
|
||||
|
||||
public String getMailProto() {
|
||||
return mailProto;
|
||||
}
|
||||
public void setMailProto(String mailProto) {
|
||||
this.mailProto = mailProto;
|
||||
}
|
||||
public String getMailFrom() {
|
||||
return mailFrom;
|
||||
}
|
||||
public String getMailTo() {
|
||||
return mailTo;
|
||||
}
|
||||
public void setMailTo(String mailTo) {
|
||||
this.mailTo = mailTo;
|
||||
}
|
||||
public void setMailFrom(String mailFrom) {
|
||||
this.mailFrom = mailFrom;
|
||||
}
|
||||
public String getSubject() {
|
||||
return subject;
|
||||
}
|
||||
public void setSubject(String subject) {
|
||||
this.subject = subject;
|
||||
}
|
||||
public String getEmlFile() {
|
||||
return emlFile;
|
||||
}
|
||||
public void setEmlFile(String emlFile) {
|
||||
this.emlFile = emlFile;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
@@ -1,72 +0,0 @@
|
||||
/**
|
||||
* @Title: DfOpenvpnLog.java
|
||||
* @Package com.nis.domain.restful
|
||||
* @Description: TODO(用一句话描述该文件做什么)
|
||||
* @author (ddm)
|
||||
* @date 2016年9月7日 下午1:57:20
|
||||
* @version V1.0
|
||||
*/
|
||||
package com.nis.domain.restful;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonIgnore;
|
||||
import com.nis.domain.LogEntity;
|
||||
import com.wordnik.swagger.annotations.ApiModelProperty;
|
||||
|
||||
/**
|
||||
* @ClassName: DfOpenvpnLog
|
||||
* @Description: OPENVPNXX日志
|
||||
* @author (ddm)
|
||||
* @date 2016年9月7日 下午2:06:45
|
||||
* @version V1.0
|
||||
*/
|
||||
public class DfOpenvpnLog extends LogEntity<DfOpenvpnLog>{
|
||||
/**
|
||||
* @Fields serialVersionUID : TODO(用一句话描述这个变量表示什么)
|
||||
*/
|
||||
private static final long serialVersionUID = -5331151634423058789L;
|
||||
|
||||
@ApiModelProperty(value="版本信息", required=true)
|
||||
protected String version;
|
||||
@ApiModelProperty(value="加密方式", required=true)
|
||||
protected String encryptMode;
|
||||
@ApiModelProperty(value="是否有HMAC", required=true)
|
||||
protected Integer hmac;
|
||||
@ApiModelProperty(value="通道类型", required=true)
|
||||
protected Integer tunnelType;
|
||||
|
||||
protected String searchEncryptMode;
|
||||
|
||||
@JsonIgnore
|
||||
public String getSearchEncryptMode() {
|
||||
return searchEncryptMode;
|
||||
}
|
||||
public void setSearchEncryptMode(String searchEncryptMode) {
|
||||
this.searchEncryptMode = searchEncryptMode;
|
||||
}
|
||||
|
||||
public String getVersion() {
|
||||
return version;
|
||||
}
|
||||
public void setVersion(String version) {
|
||||
this.version = version;
|
||||
}
|
||||
public String getEncryptMode() {
|
||||
return encryptMode;
|
||||
}
|
||||
public void setEncryptMode(String encryptMode) {
|
||||
this.encryptMode = encryptMode;
|
||||
}
|
||||
public Integer getHmac() {
|
||||
return hmac;
|
||||
}
|
||||
public void setHmac(Integer hmac) {
|
||||
this.hmac = hmac;
|
||||
}
|
||||
public Integer getTunnelType() {
|
||||
return tunnelType;
|
||||
}
|
||||
public void setTunnelType(Integer tunnelType) {
|
||||
this.tunnelType = tunnelType;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,65 +0,0 @@
|
||||
/**
|
||||
* @Title: DfPptpLog.java
|
||||
* @Package com.nis.domain.restful
|
||||
* @Description: TODO(用一句话描述该文件做什么)
|
||||
* @author (ddm)
|
||||
* @date 2016年9月7日 下午1:23:30
|
||||
* @version V1.0
|
||||
*/
|
||||
package com.nis.domain.restful;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonIgnore;
|
||||
import com.nis.domain.LogEntity;
|
||||
import com.wordnik.swagger.annotations.ApiModelProperty;
|
||||
|
||||
/**
|
||||
* @ClassName: DfPptpLog
|
||||
* @Description: FTPXX日志
|
||||
* @author (ddm)
|
||||
* @date 2016年9月7日 下午1:23:30
|
||||
* @version V1.0
|
||||
*/
|
||||
public class DfPptpLog extends LogEntity<DfPptpLog>{
|
||||
/**
|
||||
* @Fields serialVersionUID : TODO(用一句话描述这个变量表示什么)
|
||||
*/
|
||||
private static final long serialVersionUID = 2472051411161697356L;
|
||||
|
||||
@ApiModelProperty(value="通道类型", required=true)
|
||||
protected Integer tunnelType;
|
||||
@ApiModelProperty(value="加密方式", required=true)
|
||||
protected Integer encryptMode;
|
||||
@ApiModelProperty(value="内容类型", required=true)
|
||||
protected Integer contentType;
|
||||
|
||||
protected String searchEncryptMode;
|
||||
|
||||
@JsonIgnore
|
||||
public String getSearchEncryptMode() {
|
||||
return searchEncryptMode;
|
||||
}
|
||||
public void setSearchEncryptMode(String searchEncryptMode) {
|
||||
this.searchEncryptMode = searchEncryptMode;
|
||||
}
|
||||
|
||||
public Integer getTunnelType() {
|
||||
return tunnelType;
|
||||
}
|
||||
public void setTunnelType(Integer tunnelType) {
|
||||
this.tunnelType = tunnelType;
|
||||
}
|
||||
public Integer getEncryptMode() {
|
||||
return encryptMode;
|
||||
}
|
||||
public void setEncryptMode(Integer encryptMode) {
|
||||
this.encryptMode = encryptMode;
|
||||
}
|
||||
public Integer getContentType() {
|
||||
return contentType;
|
||||
}
|
||||
public void setContentType(Integer contentType) {
|
||||
this.contentType = contentType;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
@@ -1,90 +0,0 @@
|
||||
/**
|
||||
* @Title: DfSshLog.java
|
||||
* @Package com.nis.domain.restful
|
||||
* @Description: TODO(用一句话描述该文件做什么)
|
||||
* @author (ddm)
|
||||
* @date 2016年9月7日 下午2:21:10
|
||||
* @version V1.0
|
||||
*/
|
||||
package com.nis.domain.restful;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonIgnore;
|
||||
import com.nis.domain.LogEntity;
|
||||
import com.wordnik.swagger.annotations.ApiModelProperty;
|
||||
|
||||
/**
|
||||
* @ClassName: DfSshLog
|
||||
* @Description: SSHXX日志
|
||||
* @author (ddm)
|
||||
* @date 2016年9月7日 下午2:21:10
|
||||
* @version V1.0
|
||||
*/
|
||||
public class DfSshLog extends LogEntity<DfSshLog>{
|
||||
/**
|
||||
* @Fields serialVersionUID : TODO(用一句话描述这个变量表示什么)
|
||||
*/
|
||||
private static final long serialVersionUID = -8122097197353956263L;
|
||||
|
||||
@ApiModelProperty(value="版本信息", required=true)
|
||||
protected String version;
|
||||
@ApiModelProperty(value="主机密钥", required=true)
|
||||
protected String hostKey;
|
||||
@ApiModelProperty(value="主机cookie", required=true)
|
||||
protected String hostCookie;
|
||||
@ApiModelProperty(value="加密方式", required=true)
|
||||
protected String encryptMode;
|
||||
@ApiModelProperty(value="消息认证码", required=true)
|
||||
protected String mac;
|
||||
@ApiModelProperty(value="通道类型", required=true)
|
||||
protected Integer tunnelType;
|
||||
|
||||
protected String searchEncryptMode;
|
||||
|
||||
@JsonIgnore
|
||||
public String getSearchEncryptMode() {
|
||||
return searchEncryptMode;
|
||||
}
|
||||
|
||||
public void setSearchEncryptMode(String searchEncryptMode) {
|
||||
this.searchEncryptMode = searchEncryptMode;
|
||||
}
|
||||
|
||||
public String getVersion() {
|
||||
return version;
|
||||
}
|
||||
public void setVersion(String version) {
|
||||
this.version = version;
|
||||
}
|
||||
public String getHostCookie() {
|
||||
return hostCookie;
|
||||
}
|
||||
public String getHostKey() {
|
||||
return hostKey;
|
||||
}
|
||||
public void setHostCookie(String hostCookie) {
|
||||
this.hostCookie = hostCookie;
|
||||
}
|
||||
public void setHostKey(String hostKey) {
|
||||
this.hostKey = hostKey;
|
||||
}
|
||||
public String getEncryptMode() {
|
||||
return encryptMode;
|
||||
}
|
||||
public void setEncryptMode(String encryptMode) {
|
||||
this.encryptMode = encryptMode;
|
||||
}
|
||||
public String getMac() {
|
||||
return mac;
|
||||
}
|
||||
public void setMac(String mac) {
|
||||
this.mac = mac;
|
||||
}
|
||||
public Integer getTunnelType() {
|
||||
return tunnelType;
|
||||
}
|
||||
public void setTunnelType(Integer tunnelType) {
|
||||
this.tunnelType = tunnelType;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
@@ -1,78 +0,0 @@
|
||||
/**
|
||||
* @Title: DfSslLog.java
|
||||
* @Package com.nis.domain.restful
|
||||
* @Description: TODO(用一句话描述该文件做什么)
|
||||
* @author (ddm)
|
||||
* @date 2016年9月7日 下午2:34:10
|
||||
* @version V1.0
|
||||
*/
|
||||
package com.nis.domain.restful;
|
||||
|
||||
import com.nis.domain.LogEntity;
|
||||
import com.wordnik.swagger.annotations.ApiModelProperty;
|
||||
|
||||
/**
|
||||
* @ClassName: DfSslLog
|
||||
* @Description: SSLXX日志
|
||||
* @author (ddm)
|
||||
* @date 2016年9月7日 下午2:34:10
|
||||
* @version V1.0
|
||||
*/
|
||||
public class DfSslLog extends LogEntity<DfSslLog>{
|
||||
/**
|
||||
* @Fields serialVersionUID : TODO(用一句话描述这个变量表示什么)
|
||||
*/
|
||||
private static final long serialVersionUID = -1758562698030781445L;
|
||||
|
||||
@ApiModelProperty(value="版本信息", required=true)
|
||||
protected String version;
|
||||
@ApiModelProperty(value="SNI", required=true)
|
||||
protected String sni;
|
||||
@ApiModelProperty(value="个体证书转储路径", required=true)
|
||||
protected String individualCertFile;
|
||||
@ApiModelProperty(value="中级证书转储路径", required=true)
|
||||
protected String middleCertFile;
|
||||
@ApiModelProperty(value="根证书转储路径", required=true)
|
||||
protected String rootCertFile;
|
||||
@ApiModelProperty(value="其他证书链转储路径", required=true)
|
||||
protected String chainCertFile;
|
||||
public String getVersion() {
|
||||
return version;
|
||||
}
|
||||
public void setVersion(String version) {
|
||||
this.version = version;
|
||||
}
|
||||
public String getSni() {
|
||||
return sni;
|
||||
}
|
||||
public void setSni(String sni) {
|
||||
this.sni = sni;
|
||||
}
|
||||
public String getIndividualCertFile() {
|
||||
return individualCertFile;
|
||||
}
|
||||
public void setIndividualCertFile(String individualCertFile) {
|
||||
this.individualCertFile = individualCertFile;
|
||||
}
|
||||
public String getMiddleCertFile() {
|
||||
return middleCertFile;
|
||||
}
|
||||
public void setMiddleCertFile(String middleCertFile) {
|
||||
this.middleCertFile = middleCertFile;
|
||||
}
|
||||
public String getRootCertFile() {
|
||||
return rootCertFile;
|
||||
}
|
||||
public void setRootCertFile(String rootCertFile) {
|
||||
this.rootCertFile = rootCertFile;
|
||||
}
|
||||
public String getChainCertFile() {
|
||||
return chainCertFile;
|
||||
}
|
||||
public void setChainCertFile(String chainCertFile) {
|
||||
this.chainCertFile = chainCertFile;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
@@ -1,29 +0,0 @@
|
||||
package com.nis.domain.restful;
|
||||
|
||||
import com.nis.domain.LogEntity;
|
||||
import com.wordnik.swagger.annotations.ApiModelProperty;
|
||||
|
||||
/**
|
||||
* @ClassName: DfTunnelRandomLog
|
||||
* @Description: 隧道协议随机封堵
|
||||
* @author (ddm)
|
||||
* @date 2016年12月23日 上午11:18:14
|
||||
* @version V1.0
|
||||
*/
|
||||
public class DfTunnelRandomLog extends LogEntity<DfTunnelRandomLog>{
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
private static final long serialVersionUID = 111411360809146865L;
|
||||
@ApiModelProperty(value="隧道协议信息", required=true)
|
||||
protected Long tunnelName;
|
||||
|
||||
public Long getTunnelName() {
|
||||
return tunnelName;
|
||||
}
|
||||
public void setTunnelName(Long tunnelName) {
|
||||
this.tunnelName = tunnelName;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,128 +0,0 @@
|
||||
/**
|
||||
* @Title: DjDnsLog.java
|
||||
* @Package com.nis.domain.restful
|
||||
* @Description: TODO(用一句话描述该文件做什么)
|
||||
* @author (zbc)
|
||||
* @date 2016年9月7日 上午10:16:30
|
||||
* @version V1.0
|
||||
*/
|
||||
package com.nis.domain.restful;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import java.util.Date;
|
||||
import java.util.Map;
|
||||
|
||||
import com.nis.domain.LogEntity;
|
||||
import com.nis.domain.Page;
|
||||
import com.wordnik.swagger.annotations.ApiModelProperty;
|
||||
|
||||
/**
|
||||
* @ClassName: DjDnsLog
|
||||
* @Description: DNSXX日志
|
||||
* @author (zbc)
|
||||
* @date 2016年9月7日 上午11:41:50
|
||||
* @version V1.0
|
||||
*/
|
||||
public class DjDnsLog extends LogEntity<DjDnsLog> {
|
||||
|
||||
/**
|
||||
* @Fields serialVersionUID : TODO(用一句话描述这个变量表示什么)
|
||||
*/
|
||||
private static final long serialVersionUID = 3747868295576943355L;
|
||||
|
||||
@ApiModelProperty(value = "请求/应答", required = true)
|
||||
protected Long qr;
|
||||
@ApiModelProperty(value = "递归请求", required = true)
|
||||
protected Long rd;
|
||||
@ApiModelProperty(value = "递归应答", required = true)
|
||||
protected Long ra;
|
||||
@ApiModelProperty(value = "资源记录", required = true)
|
||||
protected String rr;
|
||||
@ApiModelProperty(value = "查询类型", required = true)
|
||||
protected Long qtype;
|
||||
@ApiModelProperty(value = "查询类", required = true)
|
||||
protected Long qclass;
|
||||
@ApiModelProperty(value = "OPCODE", required = true)
|
||||
protected Long opcode;
|
||||
@ApiModelProperty(value = "查询内容", required = true)
|
||||
protected String qname;
|
||||
@ApiModelProperty(value = "DNS:1,DNSSEC:2", required = true)
|
||||
protected Long dnsSub;
|
||||
|
||||
public DjDnsLog() {
|
||||
super();
|
||||
}
|
||||
|
||||
|
||||
public Long getQr() {
|
||||
return qr;
|
||||
}
|
||||
|
||||
public void setQr(Long qr) {
|
||||
this.qr = qr;
|
||||
}
|
||||
|
||||
public Long getRd() {
|
||||
return rd;
|
||||
}
|
||||
|
||||
public void setRd(Long rd) {
|
||||
this.rd = rd;
|
||||
}
|
||||
|
||||
public Long getRa() {
|
||||
return ra;
|
||||
}
|
||||
|
||||
public void setRa(Long ra) {
|
||||
this.ra = ra;
|
||||
}
|
||||
|
||||
public String getRr() {
|
||||
return rr;
|
||||
}
|
||||
|
||||
public void setRr(String rr) {
|
||||
this.rr = rr;
|
||||
}
|
||||
|
||||
public Long getQtype() {
|
||||
return qtype;
|
||||
}
|
||||
|
||||
public void setQtype(Long qtype) {
|
||||
this.qtype = qtype;
|
||||
}
|
||||
|
||||
public Long getQclass() {
|
||||
return qclass;
|
||||
}
|
||||
|
||||
public void setQclass(Long qclass) {
|
||||
this.qclass = qclass;
|
||||
}
|
||||
|
||||
public Long getOpcode() {
|
||||
return opcode;
|
||||
}
|
||||
|
||||
public void setOpcode(Long opcode) {
|
||||
this.opcode = opcode;
|
||||
}
|
||||
|
||||
public String getQname() {
|
||||
return qname;
|
||||
}
|
||||
|
||||
public void setQname(String qname) {
|
||||
this.qname = qname;
|
||||
}
|
||||
|
||||
public Long getDnsSub() {
|
||||
return dnsSub;
|
||||
}
|
||||
|
||||
public void setDnsSub(Long dnsSub) {
|
||||
this.dnsSub = dnsSub;
|
||||
}
|
||||
}
|
||||
@@ -1,135 +0,0 @@
|
||||
/**
|
||||
* @Title: DjFlowControlStop.java
|
||||
* @Package com.nis.domain.restful
|
||||
* @Description: 监测规则流控实体
|
||||
* @author (zbc)
|
||||
* @date 2016年9月8日 下午17:51:30
|
||||
* @version V1.0
|
||||
*/
|
||||
package com.nis.domain.restful;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
|
||||
import javax.xml.bind.annotation.XmlTransient;
|
||||
|
||||
import org.apache.commons.lang3.builder.ReflectionToStringBuilder;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonIgnore;
|
||||
import com.fasterxml.jackson.databind.annotation.JsonSerialize;
|
||||
import com.nis.domain.Page;
|
||||
import com.nis.util.JsonDateSerializer;
|
||||
import com.wordnik.swagger.annotations.ApiModelProperty;
|
||||
|
||||
/**
|
||||
* @ClassName: DjFlowControlStop
|
||||
* @Description: 监测规则流控实体
|
||||
* @author (zbc)
|
||||
* @date 2016年9月8日 下午17:51:30
|
||||
* @version V1.0
|
||||
*/
|
||||
public class DjFlowControlStop implements Serializable {
|
||||
|
||||
/**
|
||||
* @Fields serialVersionUID : TODO(用一句话描述这个变量表示什么)
|
||||
*/
|
||||
private static final long serialVersionUID = 5092754867586897432L;
|
||||
|
||||
|
||||
@ApiModelProperty(value="配置ID", required=true)
|
||||
protected Long cfgId;
|
||||
@ApiModelProperty(value="业务", required=true)
|
||||
protected Integer service;
|
||||
@ApiModelProperty(value="动作", required=true)
|
||||
protected Integer action;
|
||||
@ApiModelProperty(value="操作时间", required=true)
|
||||
protected Date opTime;
|
||||
|
||||
|
||||
/*protected String searchCfgId;*/
|
||||
protected String optStartTime;
|
||||
protected String optEndTime;
|
||||
|
||||
/*@JsonIgnore
|
||||
public String getSearchCfgId() {
|
||||
return searchCfgId;
|
||||
}
|
||||
public void setSearchCfgId(String searchCfgId) {
|
||||
this.searchCfgId = searchCfgId;
|
||||
}*/
|
||||
@JsonIgnore
|
||||
public String getOptStartTime() {
|
||||
return optStartTime;
|
||||
}
|
||||
public void setOptStartTime(String optStartTime) {
|
||||
this.optStartTime = optStartTime;
|
||||
}
|
||||
|
||||
@JsonIgnore
|
||||
public String getOptEndTime() {
|
||||
return optEndTime;
|
||||
}
|
||||
public void setOptEndTime(String optEndTime) {
|
||||
this.optEndTime = optEndTime;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* 当前实体分页对象
|
||||
*/
|
||||
protected Page<DjFlowControlStop> page;
|
||||
|
||||
|
||||
@JsonIgnore
|
||||
@XmlTransient
|
||||
public Page<DjFlowControlStop> getPage() {
|
||||
if (page == null){
|
||||
page = new Page<DjFlowControlStop>();
|
||||
}
|
||||
return page;
|
||||
}
|
||||
|
||||
public Page<DjFlowControlStop> setPage(Page<DjFlowControlStop> page) {
|
||||
this.page = page;
|
||||
return page;
|
||||
}
|
||||
|
||||
public Long getCfgId() {
|
||||
return cfgId;
|
||||
}
|
||||
public void setCfgId(Long cfgId) {
|
||||
this.cfgId = cfgId;
|
||||
}
|
||||
|
||||
public Integer getService() {
|
||||
return service;
|
||||
}
|
||||
public void setService(Integer service) {
|
||||
this.service = service;
|
||||
}
|
||||
public Integer getAction() {
|
||||
return action;
|
||||
}
|
||||
public void setAction(Integer action) {
|
||||
this.action = action;
|
||||
}
|
||||
|
||||
@JsonSerialize(using=JsonDateSerializer.class)
|
||||
public Date getOpTime() {
|
||||
return opTime;
|
||||
}
|
||||
public void setOpTime(Date opTime) {
|
||||
this.opTime = opTime;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return ReflectionToStringBuilder.toString(this);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,37 +0,0 @@
|
||||
/**
|
||||
* @Title: DjFtpLog.java
|
||||
* @Package com.nis.domain.restful
|
||||
* @Description: TODO(用一句话描述该文件做什么)
|
||||
* @author (zbc)
|
||||
* @date 2016年9月7日 下午17:51:30
|
||||
* @version V1.0
|
||||
*/
|
||||
package com.nis.domain.restful;
|
||||
|
||||
import com.nis.domain.LogEntity;
|
||||
import com.wordnik.swagger.annotations.ApiModelProperty;
|
||||
|
||||
/**
|
||||
* @ClassName: DjFtpLog
|
||||
* @Description: FTPXX日志
|
||||
* @author (zbc)
|
||||
* @date 2016年9月7日 下午17:51:30
|
||||
* @version V1.0
|
||||
*/
|
||||
public class DjFtpLog extends LogEntity<DjFtpLog>{
|
||||
|
||||
/**
|
||||
* @Fields serialVersionUID : TODO(用一句话描述这个变量表示什么)
|
||||
*/
|
||||
private static final long serialVersionUID = 172160853794852639L;
|
||||
|
||||
@ApiModelProperty(value="FTP链接", required=true)
|
||||
protected String ftpUrl;
|
||||
|
||||
public String getFtpUrl() {
|
||||
return ftpUrl;
|
||||
}
|
||||
public void setFtpUrl(String ftpUrl) {
|
||||
this.ftpUrl = ftpUrl;
|
||||
}
|
||||
}
|
||||
@@ -1,124 +0,0 @@
|
||||
/**
|
||||
* @Title: DjHttpKeywordLog.java
|
||||
* @Package com.nis.domain.restful
|
||||
* @Description: TODO(用一句话描述该文件做什么)
|
||||
* @author (zbc)
|
||||
* @date 2016年9月7日 下午16:04:30
|
||||
* @version V1.0
|
||||
*/
|
||||
package com.nis.domain.restful;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonIgnore;
|
||||
import com.nis.domain.LogEntity;
|
||||
import com.wordnik.swagger.annotations.ApiModelProperty;
|
||||
|
||||
/**
|
||||
* @ClassName: DjHttpKeywordLog
|
||||
* @Description: HTTP关键字XX日志
|
||||
* @author (zbc)
|
||||
* @date 2016年9月7日 下午16:04:30
|
||||
* @version V1.0
|
||||
*/
|
||||
public class DjHttpKeywordLog extends LogEntity<DjHttpKeywordLog>{
|
||||
|
||||
/**
|
||||
* @Fields serialVersionUID : TODO(用一句话描述这个变量表示什么)
|
||||
*/
|
||||
private static final long serialVersionUID = -7872876035772453423L;
|
||||
|
||||
|
||||
@ApiModelProperty(value="TCP初始序列号", required=true)
|
||||
protected Long c2sIsn;
|
||||
@ApiModelProperty(value="是否HTTP代理标志", required=true)
|
||||
protected Long httpProxyFlag;
|
||||
@ApiModelProperty(value="HTTP会话序列号", required=true)
|
||||
protected Long httpSeq;
|
||||
@ApiModelProperty(value="url地址", required=true)
|
||||
protected String url;
|
||||
@ApiModelProperty(value="请求行", required=true)
|
||||
protected String reqLine;
|
||||
@ApiModelProperty(value="请求头转储文件", required=true)
|
||||
protected String reqHdrFile;
|
||||
@ApiModelProperty(value="请求体转储文件", required=true)
|
||||
protected String reqBodyFile;
|
||||
@ApiModelProperty(value="应答行", required=true)
|
||||
protected String resLine;
|
||||
@ApiModelProperty(value="应答头转储文件", required=true)
|
||||
protected String resHdrFile;
|
||||
@ApiModelProperty(value="应答体体转储文件", required=true)
|
||||
protected String resBodyFile;
|
||||
|
||||
|
||||
|
||||
protected String searchUrl;
|
||||
|
||||
@JsonIgnore
|
||||
public String getSearchUrl() {
|
||||
return searchUrl;
|
||||
}
|
||||
|
||||
public void setSearchUrl(String searchUrl) {
|
||||
this.searchUrl = searchUrl;
|
||||
}
|
||||
public Long getC2sIsn() {
|
||||
return c2sIsn;
|
||||
}
|
||||
public void setC2sIsn(Long c2sIsn) {
|
||||
this.c2sIsn = c2sIsn;
|
||||
}
|
||||
public Long getHttpProxyFlag() {
|
||||
return httpProxyFlag;
|
||||
}
|
||||
public void setHttpProxyFlag(Long httpProxyFlag) {
|
||||
this.httpProxyFlag = httpProxyFlag;
|
||||
}
|
||||
public Long getHttpSeq() {
|
||||
return httpSeq;
|
||||
}
|
||||
public void setHttpSeq(Long httpSeq) {
|
||||
this.httpSeq = httpSeq;
|
||||
}
|
||||
public String getUrl() {
|
||||
return url;
|
||||
}
|
||||
public void setUrl(String url) {
|
||||
this.url = url;
|
||||
}
|
||||
public String getReqLine() {
|
||||
return reqLine;
|
||||
}
|
||||
public void setReqLine(String reqLine) {
|
||||
this.reqLine = reqLine;
|
||||
}
|
||||
public String getReqHdrFile() {
|
||||
return reqHdrFile;
|
||||
}
|
||||
public void setReqHdrFile(String reqHdrFile) {
|
||||
this.reqHdrFile = reqHdrFile;
|
||||
}
|
||||
public String getReqBodyFile() {
|
||||
return reqBodyFile;
|
||||
}
|
||||
public void setReqBodyFile(String reqBodyFile) {
|
||||
this.reqBodyFile = reqBodyFile;
|
||||
}
|
||||
public String getResLine() {
|
||||
return resLine;
|
||||
}
|
||||
public void setResLine(String resLine) {
|
||||
this.resLine = resLine;
|
||||
}
|
||||
public String getResHdrFile() {
|
||||
return resHdrFile;
|
||||
}
|
||||
public void setResHdrFile(String resHdrFile) {
|
||||
this.resHdrFile = resHdrFile;
|
||||
}
|
||||
public String getResBodyFile() {
|
||||
return resBodyFile;
|
||||
}
|
||||
public void setResBodyFile(String resBodyFile) {
|
||||
this.resBodyFile = resBodyFile;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,150 +0,0 @@
|
||||
/**
|
||||
* @Title: DjHttpReqLog.java
|
||||
* @Package com.nis.domain.restful
|
||||
* @Description: TODO(用一句话描述该文件做什么)
|
||||
* @author (zbc)
|
||||
* @date 2016年9月5日 下午10:18:32
|
||||
* @version V1.0
|
||||
*/
|
||||
package com.nis.domain.restful;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonIgnore;
|
||||
import com.nis.domain.LogEntity;
|
||||
import com.wordnik.swagger.annotations.ApiModelProperty;
|
||||
|
||||
/**
|
||||
* @ClassName: DjHttpReqLog
|
||||
* @Description: HTTP协议监测请求日志
|
||||
* @author (zbc)
|
||||
* @date 2016年9月5日 下午1:58:33
|
||||
* @version V1.0
|
||||
*/
|
||||
public class DjHttpReqLog extends LogEntity<DjHttpReqLog>{
|
||||
|
||||
/**
|
||||
* @Fields serialVersionUID : TODO(用一句话描述这个变量表示什么)
|
||||
*/
|
||||
private static final long serialVersionUID = -2103649235895046586L;
|
||||
|
||||
@ApiModelProperty(value="TCP初始序列号", required=true)
|
||||
protected Long c2sIsn;
|
||||
@ApiModelProperty(value="是否HTTP代理标志", required=true)
|
||||
protected Long httpProxyFlag;
|
||||
@ApiModelProperty(value="HTTP会话序列号", required=true)
|
||||
protected Long httpSeq;
|
||||
@ApiModelProperty(value="url地址", required=true)
|
||||
protected String url;
|
||||
@ApiModelProperty(value="请求行", required=true)
|
||||
protected String reqLine;
|
||||
@ApiModelProperty(value="请求头转储文件", required=true)
|
||||
protected String reqHdrFile;
|
||||
@ApiModelProperty(value="请求体转储文件", required=true)
|
||||
protected String reqBodyFile;
|
||||
|
||||
@ApiModelProperty(value="Cookie值", required=true)
|
||||
protected String cookie;
|
||||
@ApiModelProperty(value="referer值", required=true)
|
||||
protected String referer;
|
||||
@ApiModelProperty(value="UA值", required=true)
|
||||
protected String ua;
|
||||
@ApiModelProperty(value="请求头用户自定义域名称", required=true)
|
||||
protected String reqUserDefineKey;
|
||||
@ApiModelProperty(value="请求头用户自定义域值", required=true)
|
||||
protected String reqUserDefineValue;
|
||||
|
||||
|
||||
protected String searchUrl;
|
||||
|
||||
|
||||
@JsonIgnore
|
||||
public String getSearchUrl() {
|
||||
return searchUrl;
|
||||
}
|
||||
|
||||
public void setSearchUrl(String searchUrl) {
|
||||
this.searchUrl = searchUrl;
|
||||
}
|
||||
public Long getC2sIsn() {
|
||||
return c2sIsn;
|
||||
}
|
||||
public void setC2sIsn(Long c2sIsn) {
|
||||
this.c2sIsn = c2sIsn;
|
||||
}
|
||||
public Long getHttpProxyFlag() {
|
||||
return httpProxyFlag;
|
||||
}
|
||||
public void setHttpProxyFlag(Long httpProxyFlag) {
|
||||
this.httpProxyFlag = httpProxyFlag;
|
||||
}
|
||||
public Long getHttpSeq() {
|
||||
return httpSeq;
|
||||
}
|
||||
public void setHttpSeq(Long httpSeq) {
|
||||
this.httpSeq = httpSeq;
|
||||
}
|
||||
public String getUrl() {
|
||||
return url;
|
||||
}
|
||||
public void setUrl(String url) {
|
||||
this.url = url;
|
||||
}
|
||||
public String getReqLine() {
|
||||
return reqLine;
|
||||
}
|
||||
public void setReqLine(String reqLine) {
|
||||
this.reqLine = reqLine;
|
||||
}
|
||||
public String getReqHdrFile() {
|
||||
return reqHdrFile;
|
||||
}
|
||||
public void setReqHdrFile(String reqHdrFile) {
|
||||
this.reqHdrFile = reqHdrFile;
|
||||
}
|
||||
public String getReqBodyFile() {
|
||||
return reqBodyFile;
|
||||
}
|
||||
public void setReqBodyFile(String reqBodyFile) {
|
||||
this.reqBodyFile = reqBodyFile;
|
||||
}
|
||||
|
||||
public String getCookie() {
|
||||
return cookie;
|
||||
}
|
||||
|
||||
public void setCookie(String cookie) {
|
||||
this.cookie = cookie;
|
||||
}
|
||||
|
||||
public String getReferer() {
|
||||
return referer;
|
||||
}
|
||||
|
||||
public void setReferer(String referer) {
|
||||
this.referer = referer;
|
||||
}
|
||||
|
||||
public String getUa() {
|
||||
return ua;
|
||||
}
|
||||
|
||||
public void setUa(String ua) {
|
||||
this.ua = ua;
|
||||
}
|
||||
|
||||
public String getReqUserDefineKey() {
|
||||
return reqUserDefineKey;
|
||||
}
|
||||
|
||||
public void setReqUserDefineKey(String reqUserDefineKey) {
|
||||
this.reqUserDefineKey = reqUserDefineKey;
|
||||
}
|
||||
|
||||
public String getReqUserDefineValue() {
|
||||
return reqUserDefineValue;
|
||||
}
|
||||
|
||||
public void setReqUserDefineValue(String reqUserDefineValue) {
|
||||
this.reqUserDefineValue = reqUserDefineValue;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,172 +0,0 @@
|
||||
/**
|
||||
* @Title: DjHttpResLog.java
|
||||
* @Package com.nis.domain.restful
|
||||
* @Description: TODO(用一句话描述该文件做什么)
|
||||
* @author (zbc)
|
||||
* @date 2016年9月7日 上午10:59:30
|
||||
* @version V1.0
|
||||
*/
|
||||
package com.nis.domain.restful;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonIgnore;
|
||||
import com.nis.domain.LogEntity;
|
||||
import com.wordnik.swagger.annotations.ApiModelProperty;
|
||||
|
||||
/**
|
||||
* @ClassName: DjHttpResLog
|
||||
* @Description: HTTP协议监测响应日志对象
|
||||
* @author (zbc)
|
||||
* @date 2016年9月7日 上午10:59:30
|
||||
* @version V1.0
|
||||
*/
|
||||
public class DjHttpResLog extends LogEntity<DjHttpResLog>{
|
||||
|
||||
/**
|
||||
* @Fields serialVersionUID : TODO(用一句话描述这个变量表示什么)
|
||||
*/
|
||||
private static final long serialVersionUID = 6976709092668535766L;
|
||||
|
||||
@ApiModelProperty(value="TCP初始序列号", required=true)
|
||||
protected Long c2sIsn;
|
||||
@ApiModelProperty(value="是否HTTP代理标志", required=true)
|
||||
protected Long httpProxyFlag;
|
||||
@ApiModelProperty(value="HTTP会话序列号", required=true)
|
||||
protected Long httpSeq;
|
||||
@ApiModelProperty(value="url地址", required=true)
|
||||
protected String url;
|
||||
@ApiModelProperty(value="请求行", required=true)
|
||||
protected String reqLine;
|
||||
@ApiModelProperty(value="请求头转储文件", required=true)
|
||||
protected String reqHdrFile;
|
||||
@ApiModelProperty(value="请求体转储文件", required=true)
|
||||
protected String reqBodyFile;
|
||||
@ApiModelProperty(value="应答行", required=true)
|
||||
protected String resLine;
|
||||
@ApiModelProperty(value="应答头转储文件", required=true)
|
||||
protected String resHdrFile;
|
||||
@ApiModelProperty(value="应答体体转储文件", required=true)
|
||||
protected String resBodyFile;
|
||||
@ApiModelProperty(value="SET-Cookie", required=true)
|
||||
protected String setCookie;
|
||||
@ApiModelProperty(value="CONTENT-LEN值", required=true)
|
||||
protected String contentLen;
|
||||
@ApiModelProperty(value="CONTENT-TYPE值", required=true)
|
||||
protected String contentType;
|
||||
@ApiModelProperty(value="请求头用户自定义域名称", required=true)
|
||||
protected String resUserDefineKey;
|
||||
@ApiModelProperty(value="请求头用户自定义域值", required=true)
|
||||
protected String resUserDefineValue;
|
||||
|
||||
protected String searchUrl;
|
||||
|
||||
@JsonIgnore
|
||||
public String getSearchUrl() {
|
||||
return searchUrl;
|
||||
}
|
||||
|
||||
public void setSearchUrl(String searchUrl) {
|
||||
this.searchUrl = searchUrl;
|
||||
}
|
||||
|
||||
public Long getC2sIsn() {
|
||||
return c2sIsn;
|
||||
}
|
||||
public void setC2sIsn(Long c2sIsn) {
|
||||
this.c2sIsn = c2sIsn;
|
||||
}
|
||||
public Long getHttpProxyFlag() {
|
||||
return httpProxyFlag;
|
||||
}
|
||||
public void setHttpProxyFlag(Long httpProxyFlag) {
|
||||
this.httpProxyFlag = httpProxyFlag;
|
||||
}
|
||||
public Long getHttpSeq() {
|
||||
return httpSeq;
|
||||
}
|
||||
public void setHttpSeq(Long httpSeq) {
|
||||
this.httpSeq = httpSeq;
|
||||
}
|
||||
public String getUrl() {
|
||||
return url;
|
||||
}
|
||||
public void setUrl(String url) {
|
||||
this.url = url;
|
||||
}
|
||||
public String getReqLine() {
|
||||
return reqLine;
|
||||
}
|
||||
public void setReqLine(String reqLine) {
|
||||
this.reqLine = reqLine;
|
||||
}
|
||||
public String getReqHdrFile() {
|
||||
return reqHdrFile;
|
||||
}
|
||||
public void setReqHdrFile(String reqHdrFile) {
|
||||
this.reqHdrFile = reqHdrFile;
|
||||
}
|
||||
public String getReqBodyFile() {
|
||||
return reqBodyFile;
|
||||
}
|
||||
public void setReqBodyFile(String reqBodyFile) {
|
||||
this.reqBodyFile = reqBodyFile;
|
||||
}
|
||||
public String getResLine() {
|
||||
return resLine;
|
||||
}
|
||||
public void setResLine(String resLine) {
|
||||
this.resLine = resLine;
|
||||
}
|
||||
public String getResHdrFile() {
|
||||
return resHdrFile;
|
||||
}
|
||||
public void setResHdrFile(String resHdrFile) {
|
||||
this.resHdrFile = resHdrFile;
|
||||
}
|
||||
public String getResBodyFile() {
|
||||
return resBodyFile;
|
||||
}
|
||||
public void setResBodyFile(String resBodyFile) {
|
||||
this.resBodyFile = resBodyFile;
|
||||
}
|
||||
|
||||
public String getSetCookie() {
|
||||
return setCookie;
|
||||
}
|
||||
|
||||
public void setSetCookie(String setCookie) {
|
||||
this.setCookie = setCookie;
|
||||
}
|
||||
|
||||
public String getContentLen() {
|
||||
return contentLen;
|
||||
}
|
||||
|
||||
public void setContentLen(String contentLen) {
|
||||
this.contentLen = contentLen;
|
||||
}
|
||||
|
||||
public String getContentType() {
|
||||
return contentType;
|
||||
}
|
||||
|
||||
public void setContentType(String contentType) {
|
||||
this.contentType = contentType;
|
||||
}
|
||||
|
||||
public String getResUserDefineKey() {
|
||||
return resUserDefineKey;
|
||||
}
|
||||
|
||||
public void setResUserDefineKey(String resUserDefineKey) {
|
||||
this.resUserDefineKey = resUserDefineKey;
|
||||
}
|
||||
|
||||
public String getResUserDefineValue() {
|
||||
return resUserDefineValue;
|
||||
}
|
||||
|
||||
public void setResUserDefineValue(String resUserDefineValue) {
|
||||
this.resUserDefineValue = resUserDefineValue;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,27 +0,0 @@
|
||||
/**
|
||||
* @Title: DjIpPortLog.java
|
||||
* @Package com.nis.domain.restful
|
||||
* @Description: TODO(用一句话描述该文件做什么)
|
||||
* @author (zbc)
|
||||
* @date 2016年9月7日 下午1:42:12
|
||||
* @version V1.0
|
||||
*/
|
||||
package com.nis.domain.restful;
|
||||
|
||||
import com.nis.domain.LogEntity;
|
||||
|
||||
/**
|
||||
* @ClassName: DjIpPortLog
|
||||
* @Description: 端口监测日志实体
|
||||
* @author (zbc)
|
||||
* @date 2016年9月7日 下午1:42:12
|
||||
* @version V1.0
|
||||
*/
|
||||
public class DjIpPortLog extends LogEntity<DjIpPortLog>{
|
||||
|
||||
/**
|
||||
* @Fields serialVersionUID : TODO(用一句话描述这个变量表示什么)
|
||||
*/
|
||||
private static final long serialVersionUID = 2011669272157526917L;
|
||||
|
||||
}
|
||||
@@ -1,56 +0,0 @@
|
||||
/**
|
||||
* @Title: DjIpsecLog.java
|
||||
* @Package com.nis.domain.restful
|
||||
* @Description: TODO(用一句话描述该文件做什么)
|
||||
* @author (zbc)
|
||||
* @date 2016年9月7日 下午19:16:20
|
||||
* @version V1.0
|
||||
*/
|
||||
package com.nis.domain.restful;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonIgnore;
|
||||
import com.nis.domain.LogEntity;
|
||||
import com.wordnik.swagger.annotations.ApiModelProperty;
|
||||
|
||||
/**
|
||||
* @ClassName: DjIpsecLog
|
||||
* @Description: IPSEC密钥交换协议监测日志
|
||||
* @author (zbc)
|
||||
* @date 2016年9月7日 下午19:16:20
|
||||
* @version V1.0
|
||||
*/
|
||||
public class DjIpsecLog extends LogEntity<DjIpsecLog>{
|
||||
|
||||
/**
|
||||
* @Fields serialVersionUID : TODO(用一句话描述这个变量表示什么)
|
||||
*/
|
||||
private static final long serialVersionUID = 607608013629342421L;
|
||||
|
||||
@ApiModelProperty(value="交换协议", required=true)
|
||||
protected Integer exProtocol;
|
||||
@ApiModelProperty(value="ISAKMP模式", required=true)
|
||||
protected Long isakmpMode;
|
||||
|
||||
protected String searchExProtocol;
|
||||
|
||||
|
||||
@JsonIgnore
|
||||
public String getSearchExProtocol() {
|
||||
return searchExProtocol;
|
||||
}
|
||||
public void setSearchExProtocol(String searchExProtocol) {
|
||||
this.searchExProtocol = searchExProtocol;
|
||||
}
|
||||
public Integer getExProtocol() {
|
||||
return exProtocol;
|
||||
}
|
||||
public void setExProtocol(Integer exProtocol) {
|
||||
this.exProtocol = exProtocol;
|
||||
}
|
||||
public Long getIsakmpMode() {
|
||||
return isakmpMode;
|
||||
}
|
||||
public void setIsakmpMode(Long isakmpMode) {
|
||||
this.isakmpMode = isakmpMode;
|
||||
}
|
||||
}
|
||||
@@ -1,66 +0,0 @@
|
||||
/**
|
||||
* @Title: DjL2tpLog.java
|
||||
* @Package com.nis.domain.restful
|
||||
* @Description: TODO(用一句话描述该文件做什么)
|
||||
* @author (zbc)
|
||||
* @date 2016年9月7日 下午19:04:30
|
||||
* @version V1.0
|
||||
*/
|
||||
package com.nis.domain.restful;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonIgnore;
|
||||
import com.nis.domain.LogEntity;
|
||||
import com.wordnik.swagger.annotations.ApiModelProperty;
|
||||
|
||||
/**
|
||||
* @ClassName: DjL2tpLog
|
||||
* @Description: L2TP协议监测日志
|
||||
* @author (zbc)
|
||||
* @date 2016年9月7日 下午19:04:30
|
||||
* @version V1.0
|
||||
*/
|
||||
public class DjL2tpLog extends LogEntity<DjL2tpLog>{
|
||||
|
||||
/**
|
||||
* @Fields serialVersionUID : TODO(用一句话描述这个变量表示什么)
|
||||
*/
|
||||
private static final long serialVersionUID = 2028351016711817096L;
|
||||
|
||||
@ApiModelProperty(value="通道类型", required=true)
|
||||
protected Integer tunnelType;
|
||||
@ApiModelProperty(value="加密方式", required=true)
|
||||
protected Integer encryptMode;
|
||||
@ApiModelProperty(value="用户名称", required=true)
|
||||
protected String chapName;
|
||||
|
||||
public String getChapName() {
|
||||
return chapName;
|
||||
}
|
||||
public void setChapName(String chapName) {
|
||||
this.chapName = chapName;
|
||||
}
|
||||
|
||||
protected String searchEncryptMode;
|
||||
|
||||
|
||||
@JsonIgnore
|
||||
public String getSearchEncryptMode() {
|
||||
return searchEncryptMode;
|
||||
}
|
||||
public void setSearchEncryptMode(String searchEncryptMode) {
|
||||
this.searchEncryptMode = searchEncryptMode;
|
||||
}
|
||||
|
||||
public Integer getTunnelType() {
|
||||
return tunnelType;
|
||||
}
|
||||
public void setTunnelType(Integer tunnelType) {
|
||||
this.tunnelType = tunnelType;
|
||||
}
|
||||
public Integer getEncryptMode() {
|
||||
return encryptMode;
|
||||
}
|
||||
public void setEncryptMode(Integer encryptMode) {
|
||||
this.encryptMode = encryptMode;
|
||||
}
|
||||
}
|
||||
@@ -1,92 +0,0 @@
|
||||
/**
|
||||
* @Title: DfMailLog.java
|
||||
* @Package com.nis.domain.restful
|
||||
* @Description: TODO(用一句话描述该文件做什么)
|
||||
* @author (ddm)
|
||||
* @date 2016年9月7日 上午10:16:30
|
||||
* @version V1.0
|
||||
*/
|
||||
package com.nis.domain.restful;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonIgnore;
|
||||
import com.nis.domain.LogEntity;
|
||||
import com.wordnik.swagger.annotations.ApiModelProperty;
|
||||
|
||||
/**
|
||||
* @ClassName: DfMailLog
|
||||
* @Description: MAILXX日志
|
||||
* @author (ddm)
|
||||
* @date 2016年9月7日 上午10:59:09
|
||||
* @version V1.0
|
||||
*/
|
||||
public class DjMailLog extends LogEntity<DjMailLog>{
|
||||
|
||||
/**
|
||||
* @Fields serialVersionUID : TODO(用一句话描述这个变量表示什么)
|
||||
*/
|
||||
private static final long serialVersionUID = -1302479250066779447L;
|
||||
|
||||
|
||||
@ApiModelProperty(value="邮件协议类型", required=true)
|
||||
protected String mailProto;
|
||||
@ApiModelProperty(value="发件人", required=true)
|
||||
protected String mailFrom;
|
||||
@ApiModelProperty(value="收件人", required=true)
|
||||
protected String mailTo;
|
||||
@ApiModelProperty(value="主题", required=true)
|
||||
protected String subject;
|
||||
@ApiModelProperty(value="EML文件转储路径", required=true)
|
||||
protected String emlFile;
|
||||
|
||||
|
||||
protected String searchMailFrom;
|
||||
protected String searchMailTo;
|
||||
|
||||
@JsonIgnore
|
||||
public String getSearchMailFrom() {
|
||||
return searchMailFrom;
|
||||
}
|
||||
public void setSearchMailFrom(String searchMailFrom) {
|
||||
this.searchMailFrom = searchMailFrom;
|
||||
}
|
||||
public void setSearchMailTo(String searchMailTo) {
|
||||
this.searchMailTo = searchMailTo;
|
||||
}
|
||||
@JsonIgnore
|
||||
public String getSearchMailTo() {
|
||||
return searchMailTo;
|
||||
}
|
||||
|
||||
public String getMailProto() {
|
||||
return mailProto;
|
||||
}
|
||||
public void setMailProto(String mailProto) {
|
||||
this.mailProto = mailProto;
|
||||
}
|
||||
public String getMailFrom() {
|
||||
return mailFrom;
|
||||
}
|
||||
public void setMailFrom(String mailFrom) {
|
||||
this.mailFrom = mailFrom;
|
||||
}
|
||||
public String getMailTo() {
|
||||
return mailTo;
|
||||
}
|
||||
public void setMailTo(String mailTo) {
|
||||
this.mailTo = mailTo;
|
||||
}
|
||||
public String getSubject() {
|
||||
return subject;
|
||||
}
|
||||
public void setSubject(String subject) {
|
||||
this.subject = subject;
|
||||
}
|
||||
public String getEmlFile() {
|
||||
return emlFile;
|
||||
}
|
||||
public void setEmlFile(String emlFile) {
|
||||
this.emlFile = emlFile;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
@@ -1,73 +0,0 @@
|
||||
/**
|
||||
* @Title: DjOpenvpnLog.java
|
||||
* @Package com.nis.domain.restful
|
||||
* @Description: TODO(用一句话描述该文件做什么)
|
||||
* @author (zbc)
|
||||
* @date 2016年9月7日 下午19:27:20
|
||||
* @version V1.0
|
||||
*/
|
||||
package com.nis.domain.restful;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonIgnore;
|
||||
import com.nis.domain.LogEntity;
|
||||
import com.wordnik.swagger.annotations.ApiModelProperty;
|
||||
|
||||
/**
|
||||
* @ClassName: DjOpenvpnLog
|
||||
* @Description: OPENVPNXX日志
|
||||
* @author (zbc)
|
||||
* @date 2016年9月7日 下午19:27:20
|
||||
* @version V1.0
|
||||
*/
|
||||
public class DjOpenvpnLog extends LogEntity<DjOpenvpnLog>{
|
||||
|
||||
/**
|
||||
* @Fields serialVersionUID : TODO(用一句话描述这个变量表示什么)
|
||||
*/
|
||||
private static final long serialVersionUID = 8055018411430634752L;
|
||||
|
||||
@ApiModelProperty(value="版本信息", required=true)
|
||||
protected String version;
|
||||
@ApiModelProperty(value="加密方式", required=true)
|
||||
protected String encryptMode;
|
||||
@ApiModelProperty(value="是否有HMAC", required=true)
|
||||
protected Integer hmac;
|
||||
@ApiModelProperty(value="通道类型", required=true)
|
||||
protected Integer tunnelType;
|
||||
|
||||
protected String searchEncryptMode;
|
||||
|
||||
|
||||
@JsonIgnore
|
||||
public String getSearchEncryptMode() {
|
||||
return searchEncryptMode;
|
||||
}
|
||||
public void setSearchEncryptMode(String searchEncryptMode) {
|
||||
this.searchEncryptMode = searchEncryptMode;
|
||||
}
|
||||
public String getVersion() {
|
||||
return version;
|
||||
}
|
||||
public void setVersion(String version) {
|
||||
this.version = version;
|
||||
}
|
||||
public String getEncryptMode() {
|
||||
return encryptMode;
|
||||
}
|
||||
public void setEncryptMode(String encryptMode) {
|
||||
this.encryptMode = encryptMode;
|
||||
}
|
||||
public Integer getHmac() {
|
||||
return hmac;
|
||||
}
|
||||
public void setHmac(Integer hmac) {
|
||||
this.hmac = hmac;
|
||||
}
|
||||
public Integer getTunnelType() {
|
||||
return tunnelType;
|
||||
}
|
||||
public void setTunnelType(Integer tunnelType) {
|
||||
this.tunnelType = tunnelType;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,60 +0,0 @@
|
||||
/**
|
||||
* @Title: DjPptpLog.java
|
||||
* @Package com.nis.domain.restful
|
||||
* @Description: TODO(用一句话描述该文件做什么)
|
||||
* @author (zbc)
|
||||
* @date 2016年9月7日 下午18:02:30
|
||||
* @version V1.0
|
||||
*/
|
||||
package com.nis.domain.restful;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonIgnore;
|
||||
import com.nis.domain.LogEntity;
|
||||
import com.wordnik.swagger.annotations.ApiModelProperty;
|
||||
|
||||
/**
|
||||
* @ClassName: DjPptpLog
|
||||
* @Description: FTPXX日志
|
||||
* @author (zbc)
|
||||
* @date 2016年9月7日 下午18:02:30
|
||||
* @version V1.0
|
||||
*/
|
||||
public class DjPptpLog extends LogEntity<DjPptpLog>{
|
||||
|
||||
/**
|
||||
* @Fields serialVersionUID : TODO(用一句话描述这个变量表示什么)
|
||||
*/
|
||||
private static final long serialVersionUID = 4819972774275203145L;
|
||||
|
||||
@ApiModelProperty(value="通道类型", required=true)
|
||||
protected Integer tunnelType;
|
||||
@ApiModelProperty(value="加密方式", required=true)
|
||||
protected Integer encryptMode;
|
||||
|
||||
protected String searchEncryptMode;
|
||||
|
||||
|
||||
@JsonIgnore
|
||||
public String getSearchEncryptMode() {
|
||||
return searchEncryptMode;
|
||||
}
|
||||
public void setSearchEncryptMode(String searchEncryptMode) {
|
||||
this.searchEncryptMode = searchEncryptMode;
|
||||
}
|
||||
|
||||
public Integer getTunnelType() {
|
||||
return tunnelType;
|
||||
}
|
||||
public void setTunnelType(Integer tunnelType) {
|
||||
this.tunnelType = tunnelType;
|
||||
}
|
||||
public Integer getEncryptMode() {
|
||||
return encryptMode;
|
||||
}
|
||||
public void setEncryptMode(Integer encryptMode) {
|
||||
this.encryptMode = encryptMode;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
@@ -1,90 +0,0 @@
|
||||
/**
|
||||
* @Title: DjSshLog.java
|
||||
* @Package com.nis.domain.restful
|
||||
* @Description: TODO(用一句话描述该文件做什么)
|
||||
* @author (zbc)
|
||||
* @date 2016年9月7日 下午19:42:10
|
||||
* @version V1.0
|
||||
*/
|
||||
package com.nis.domain.restful;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonIgnore;
|
||||
import com.nis.domain.LogEntity;
|
||||
import com.wordnik.swagger.annotations.ApiModelProperty;
|
||||
|
||||
/**
|
||||
* @ClassName: DjSshLog
|
||||
* @Description: SSHXX日志
|
||||
* @author (zbc)
|
||||
* @date 2016年9月7日 下午19:42:10
|
||||
* @version V1.0
|
||||
*/
|
||||
public class DjSshLog extends LogEntity<DjSshLog>{
|
||||
|
||||
/**
|
||||
* @Fields serialVersionUID : TODO(用一句话描述这个变量表示什么)
|
||||
*/
|
||||
private static final long serialVersionUID = 6940016532195865221L;
|
||||
|
||||
@ApiModelProperty(value="版本信息", required=true)
|
||||
protected String version;
|
||||
@ApiModelProperty(value="主机密钥", required=true)
|
||||
protected String hostKey;
|
||||
@ApiModelProperty(value="主机Cookie", required=true)
|
||||
protected String hostCookie;
|
||||
@ApiModelProperty(value="加密方式", required=true)
|
||||
protected String encryptMode;
|
||||
@ApiModelProperty(value="消息认证码", required=true)
|
||||
protected String mac;
|
||||
@ApiModelProperty(value="通道类型", required=true)
|
||||
protected Integer tunnelType;
|
||||
|
||||
|
||||
protected String searchEncryptMode;
|
||||
|
||||
@JsonIgnore
|
||||
public String getSearchEncryptMode() {
|
||||
return searchEncryptMode;
|
||||
}
|
||||
|
||||
public void setSearchEncryptMode(String searchEncryptMode) {
|
||||
this.searchEncryptMode = searchEncryptMode;
|
||||
}
|
||||
public String getVersion() {
|
||||
return version;
|
||||
}
|
||||
public void setVersion(String version) {
|
||||
this.version = version;
|
||||
}
|
||||
public String getHostKey() {
|
||||
return hostKey;
|
||||
}
|
||||
public void setHostKey(String hostKey) {
|
||||
this.hostKey = hostKey;
|
||||
}
|
||||
public String getHostCookie() {
|
||||
return hostCookie;
|
||||
}
|
||||
public void setHostCookie(String hostCookie) {
|
||||
this.hostCookie = hostCookie;
|
||||
}
|
||||
public String getEncryptMode() {
|
||||
return encryptMode;
|
||||
}
|
||||
public void setEncryptMode(String encryptMode) {
|
||||
this.encryptMode = encryptMode;
|
||||
}
|
||||
public String getMac() {
|
||||
return mac;
|
||||
}
|
||||
public void setMac(String mac) {
|
||||
this.mac = mac;
|
||||
}
|
||||
public Integer getTunnelType() {
|
||||
return tunnelType;
|
||||
}
|
||||
public void setTunnelType(Integer tunnelType) {
|
||||
this.tunnelType = tunnelType;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,81 +0,0 @@
|
||||
/**
|
||||
* @Title: DfSslLog.java
|
||||
* @Package com.nis.domain.restful
|
||||
* @Description: TODO(用一句话描述该文件做什么)
|
||||
* @author (ddm)
|
||||
* @date 2016年9月7日 下午2:34:10
|
||||
* @version V1.0
|
||||
*/
|
||||
package com.nis.domain.restful;
|
||||
|
||||
import com.nis.domain.LogEntity;
|
||||
import com.wordnik.swagger.annotations.ApiModelProperty;
|
||||
|
||||
/**
|
||||
* @ClassName: DfSslLog
|
||||
* @Description: SSLXX日志
|
||||
* @author (ddm)
|
||||
* @date 2016年9月7日 下午2:34:10
|
||||
* @version V1.0
|
||||
*/
|
||||
public class DjSslLog extends LogEntity<DjSslLog>{
|
||||
|
||||
/**
|
||||
* @Fields serialVersionUID : TODO(用一句话描述这个变量表示什么)
|
||||
*/
|
||||
private static final long serialVersionUID = 1191890804422075638L;
|
||||
|
||||
@ApiModelProperty(value="版本信息", required=true)
|
||||
protected String version;
|
||||
@ApiModelProperty(value="SNI", required=true)
|
||||
protected String sni;
|
||||
|
||||
@ApiModelProperty(value="个体证书转储路径", required=true)
|
||||
protected String individualCertFile;
|
||||
@ApiModelProperty(value="中级证书转储路径", required=true)
|
||||
protected String middleCertFile;
|
||||
@ApiModelProperty(value="根证书转储路径", required=true)
|
||||
protected String rootCertFile;
|
||||
@ApiModelProperty(value="其他证书链转储路径", required=true)
|
||||
protected String chainCertFile;
|
||||
|
||||
|
||||
public String getVersion() {
|
||||
return version;
|
||||
}
|
||||
public void setVersion(String version) {
|
||||
this.version = version;
|
||||
}
|
||||
public String getSni() {
|
||||
return sni;
|
||||
}
|
||||
public void setSni(String sni) {
|
||||
this.sni = sni;
|
||||
}
|
||||
|
||||
public String getIndividualCertFile() {
|
||||
return individualCertFile;
|
||||
}
|
||||
public void setIndividualCertFile(String individualCertFile) {
|
||||
this.individualCertFile = individualCertFile;
|
||||
}
|
||||
public String getMiddleCertFile() {
|
||||
return middleCertFile;
|
||||
}
|
||||
public void setMiddleCertFile(String middleCertFile) {
|
||||
this.middleCertFile = middleCertFile;
|
||||
}
|
||||
public String getRootCertFile() {
|
||||
return rootCertFile;
|
||||
}
|
||||
public void setRootCertFile(String rootCertFile) {
|
||||
this.rootCertFile = rootCertFile;
|
||||
}
|
||||
public String getChainCertFile() {
|
||||
return chainCertFile;
|
||||
}
|
||||
public void setChainCertFile(String chainCertFile) {
|
||||
this.chainCertFile = chainCertFile;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user