?? tomcatlog.java
字號:
package cn.edu.buaa.ieguam.logmanage.pojos;
import cn.edu.buaa.ieguam.logmanage.Pojo;
public class TomcatLog implements Pojo {
private Integer id = null;
private Integer auditId = null;
private String remoteIp = null;
private String locIp = null;
private Integer byteSent = null;
private String reHostName = null;
private String reqMethod = null;
private String locPort = null;
private String queryStr = null;
private String firstLineReq = null;
private Integer httpStatus = null;
private String usrSessId = null;
private String autherReUsr = null;
private String reqUrl = null;
private String locSerName = null;
private Integer proTime = null;
private String reQuProtocol = null;
private String reUsrName = null;
public void setId(Integer id)
{
this.id = id;
}
public void setAuditId(Integer auditId)
{
this.auditId = auditId;
}
public void setRemoteIp(String remoteIp)
{
this.remoteIp = remoteIp;
}
public void setLocIp(String locIp)
{
this.locIp = locIp;
}
public void setByteSent(Integer byteSent)
{
this.byteSent = byteSent;
}
public void setReHostName(String reHostName)
{
this.reHostName = reHostName;
}
public void setReqMethod(String reqMethod)
{
this.reqMethod = reqMethod;
}
public void setLocPort(String locPort)
{
this.locPort = locPort;
}
public void setQueryStr(String queryStr)
{
this.queryStr = queryStr;
}
public void setFirstLineReq(String firstLineReq)
{
this.firstLineReq = firstLineReq;
}
public void setHttpStatus(Integer httpStatus)
{
this.httpStatus = httpStatus;
}
public void setUsrSessId(String usrSessId)
{
this.usrSessId = usrSessId ;
}
public void setAutherReUsr(String autherReUsr)
{
this.autherReUsr = autherReUsr;
}
public void setReqUrl(String reqUrl)
{
this.reqUrl = reqUrl;
}
public void setLocSerName(String locSerName)
{
this.locSerName = locSerName;
}
public void setProTime(Integer proTime)
{
this.proTime = proTime;
}
public void setReQuProtocol(String reQuProtocol)
{
this.reQuProtocol = reQuProtocol;
}
public void setReUsrName(String reUsrName)
{
this.reUsrName = reUsrName;
}
public Integer getId()
{
return this.id;
}
public Integer getAuditId()
{
return this.auditId;
}
public String getRemoteIp()
{
return this.remoteIp;
}
public String getLocIp()
{
return this.locIp;
}
public Integer getByteSent()
{
return this.byteSent;
}
public String getReHostName()
{
return this.reHostName;
}
public String getReqMethod()
{
return this.reqMethod;
}
public String getLocPort()
{
return this.locPort;
}
public String getQueryStr()
{
return this.queryStr;
}
public String getFirstLineReq()
{
return this.firstLineReq;
}
public Integer getHttpStatus()
{
return this.httpStatus;
}
public String getUsrSessId()
{
return this.usrSessId;
}
public String getAutherReUsr()
{
return this.autherReUsr;
}
public String getReqUrl()
{
return this.reqUrl;
}
public String getLocSerName()
{
return this.locSerName;
}
public Integer getProTime()
{
return this.proTime;
}
public String getReUsrName()
{
return this.reUsrName;
}
public String getReQuProtocol()
{
return this.reQuProtocol;
}
public Object getColValue(String colName) {
// TODO Auto-generated method stub
return null;
}
public void setColValue(String colName, Object value) {
// TODO Auto-generated method stub
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -