2018-08-01 14:05:32 +08:00
|
|
|
package com.nis.domain.log;
|
|
|
|
|
|
2018-12-17 01:11:50 +08:00
|
|
|
import com.nis.util.excel.ExcelField;
|
|
|
|
|
|
2018-08-01 14:05:32 +08:00
|
|
|
public class PxyHttpLog extends BaseLogEntity<NtcIpLog> {
|
|
|
|
|
|
|
|
|
|
private static final long serialVersionUID = -3046458130302949428L;
|
|
|
|
|
|
2018-12-17 01:11:50 +08:00
|
|
|
@ExcelField(title="URL",sort=8)
|
2018-08-01 14:05:32 +08:00
|
|
|
private String url;
|
2018-12-17 01:11:50 +08:00
|
|
|
@ExcelField(title="req_line",sort=9)
|
2018-08-01 14:05:32 +08:00
|
|
|
private String reqLine;
|
2018-12-17 01:11:50 +08:00
|
|
|
@ExcelField(title="res_line",sort=10)
|
2018-08-01 14:05:32 +08:00
|
|
|
private String resLine;
|
2018-12-17 01:11:50 +08:00
|
|
|
@ExcelField(title="cookie",sort=11)
|
2018-08-01 14:05:32 +08:00
|
|
|
private String cookie;
|
2018-12-17 01:11:50 +08:00
|
|
|
@ExcelField(title="referer",sort=12)
|
2018-08-01 14:05:32 +08:00
|
|
|
private String referer;
|
2018-12-17 01:11:50 +08:00
|
|
|
@ExcelField(title="user_agent",sort=13)
|
2018-08-01 14:05:32 +08:00
|
|
|
private String userAgent;
|
2018-12-17 01:11:50 +08:00
|
|
|
@ExcelField(title="content_len",sort=14)
|
2018-08-01 14:05:32 +08:00
|
|
|
private String contentLen;
|
2018-12-17 01:11:50 +08:00
|
|
|
@ExcelField(title="content_type",sort=15)
|
2018-08-01 14:05:32 +08:00
|
|
|
private String contentType;
|
2018-12-17 01:11:50 +08:00
|
|
|
@ExcelField(title="set_cookie",sort=16)
|
2018-08-01 14:05:32 +08:00
|
|
|
private String setCookie;
|
2019-01-13 11:18:51 +08:00
|
|
|
@ExcelField(title="req_header",sort=17)
|
2018-08-01 14:05:32 +08:00
|
|
|
private String reqHeader;
|
2019-01-13 11:18:51 +08:00
|
|
|
@ExcelField(title="resp_header",sort=18)
|
2018-08-01 14:05:32 +08:00
|
|
|
private String respHeader;
|
2019-01-13 11:18:51 +08:00
|
|
|
@ExcelField(title="req_body",sort=78)
|
2018-08-01 14:05:32 +08:00
|
|
|
private String reqBody;
|
2019-01-13 11:18:51 +08:00
|
|
|
@ExcelField(title="resp_body",sort=79)
|
2019-01-22 10:08:58 +08:00
|
|
|
private String respBody;
|
2019-01-13 11:18:51 +08:00
|
|
|
@ExcelField(title="website",sort=8)
|
2018-10-16 11:21:07 +08:00
|
|
|
private String website;
|
2018-08-01 14:05:32 +08:00
|
|
|
|
2018-10-16 09:14:21 +08:00
|
|
|
|
2018-10-16 11:21:07 +08:00
|
|
|
|
|
|
|
|
public String getWebsite() {
|
|
|
|
|
return website;
|
2018-10-16 09:14:21 +08:00
|
|
|
}
|
2018-10-16 11:21:07 +08:00
|
|
|
public void setWebsite(String website) {
|
|
|
|
|
this.website = website;
|
2018-10-16 09:14:21 +08:00
|
|
|
}
|
2018-08-01 14:05:32 +08:00
|
|
|
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 getResLine() {
|
|
|
|
|
return resLine;
|
|
|
|
|
}
|
|
|
|
|
public void setResLine(String resLine) {
|
|
|
|
|
this.resLine = resLine;
|
|
|
|
|
}
|
|
|
|
|
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 getUserAgent() {
|
|
|
|
|
return userAgent;
|
|
|
|
|
}
|
|
|
|
|
public void setUserAgent(String userAgent) {
|
|
|
|
|
this.userAgent = userAgent;
|
|
|
|
|
}
|
|
|
|
|
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 getSetCookie() {
|
|
|
|
|
return setCookie;
|
|
|
|
|
}
|
|
|
|
|
public void setSetCookie(String setCookie) {
|
|
|
|
|
this.setCookie = setCookie;
|
|
|
|
|
}
|
|
|
|
|
public String getReqHeader() {
|
|
|
|
|
return reqHeader;
|
|
|
|
|
}
|
|
|
|
|
public void setReqHeader(String reqHeader) {
|
|
|
|
|
this.reqHeader = reqHeader;
|
|
|
|
|
}
|
|
|
|
|
public String getRespHeader() {
|
|
|
|
|
return respHeader;
|
|
|
|
|
}
|
|
|
|
|
public void setRespHeader(String respHeader) {
|
|
|
|
|
this.respHeader = respHeader;
|
|
|
|
|
}
|
|
|
|
|
public String getReqBody() {
|
|
|
|
|
return reqBody;
|
|
|
|
|
}
|
|
|
|
|
public void setReqBody(String reqBody) {
|
|
|
|
|
this.reqBody = reqBody;
|
|
|
|
|
}
|
2019-01-22 10:08:58 +08:00
|
|
|
public String getRespBody() {
|
|
|
|
|
return respBody;
|
2018-08-01 14:05:32 +08:00
|
|
|
}
|
2019-01-22 10:08:58 +08:00
|
|
|
public void setRespBody(String respBody) {
|
|
|
|
|
this.respBody = respBody;
|
2018-08-01 14:05:32 +08:00
|
|
|
}
|
|
|
|
|
@Override
|
|
|
|
|
public String toString() {
|
2019-01-22 10:08:58 +08:00
|
|
|
return "PxyHttpLog [url=" + url + ", reqLine=" + reqLine + ", resLine=" + resLine + ", cookie=" + cookie
|
|
|
|
|
+ ", referer=" + referer + ", userAgent=" + userAgent + ", contentLen=" + contentLen + ", contentType="
|
|
|
|
|
+ contentType + ", setCookie=" + setCookie + ", reqHeader=" + reqHeader + ", respHeader=" + respHeader
|
|
|
|
|
+ ", reqBody=" + reqBody + ", respBody=" + respBody + ", website=" + website + ", cfgId=" + cfgId
|
|
|
|
|
+ ", foundTime=" + foundTime + ", recvTime=" + recvTime + ", transProto=" + transProto + ", addrType="
|
|
|
|
|
+ addrType + ", dIp=" + dIp + ", sIp=" + sIp + ", dPort=" + dPort + ", sPort=" + sPort + ", service="
|
|
|
|
|
+ service + ", entranceId=" + entranceId + ", deviceId=" + deviceId + ", direction=" + direction
|
|
|
|
|
+ ", streamDir=" + streamDir + ", capIp=" + capIp + ", addrList=" + addrList + ", serverLocate="
|
|
|
|
|
+ serverLocate + ", clientLocate=" + clientLocate + ", sAsn=" + sAsn + ", dAsn=" + dAsn
|
|
|
|
|
+ ", sSubscribeId=" + sSubscribeId + ", dSubscribeId=" + dSubscribeId + ", sceneFile=" + sceneFile
|
|
|
|
|
+ ", functionId=" + functionId + ", action=" + action + ", date=" + date + ", seltype=" + seltype
|
|
|
|
|
+ ", searchFoundStartTime=" + searchFoundStartTime + ", searchFoundEndTime=" + searchFoundEndTime
|
|
|
|
|
+ ", isLogTotalSearch=" + isLogTotalSearch + ", orderBy=" + orderBy + ", encapType=" + encapType
|
|
|
|
|
+ ", linkId=" + linkId + ", innerSmac=" + innerSmac + ", innerDmac=" + innerDmac + ", id=" + id
|
|
|
|
|
+ ", currentUser=" + currentUser + ", page=" + page + ", pageLog=" + pageLog + ", sqlMap=" + sqlMap
|
|
|
|
|
+ ", isNewRecord=" + isNewRecord + ", isFilterAction=" + isFilterAction + "]";
|
2018-08-01 14:05:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|