📄 auditevent.java
字号:
/**
* $RCSfile$
* $Revision: 37 $
* $Date: 2004-10-21 03:08:43 -0300 (Thu, 21 Oct 2004) $
*
* Copyright (C) 2004 Jive Software. All rights reserved.
*
* This software is published under the terms of the GNU Public License (GPL),
* a copy of which is included in this distribution.
*/
package org.jivesoftware.wildfire.audit;
import org.jivesoftware.wildfire.Session;
import java.util.Date;
/**
* Defines the known event types used with audits on arbitrary
* data/events.
*
* @author Iain Shigeoka
*/
public class AuditEvent {
/**
* All user generated codes must be equal to or greater than this constant
* to avoid clashing with Wildfire event codes.
*/
public static final int USER_CODES = 100;
private Session session;
private Date time;
private int code;
private int reason;
private String data;
/**
* Create a new audit event.
*
* @param eventSession the session that triggered the event or null
* if no session is associated with this event.
* @param timestamp the date/time the event occured.
* @param eventCode a code indicating the type of event that occured.
* @param eventReason a second code indicating more details about the event type.
* @param eventData arbitrary string data associated with the event or null.
*/
public AuditEvent(Session eventSession, Date timestamp, int eventCode, int eventReason,
String eventData)
{
this.session = eventSession;
this.time = timestamp;
this.code = eventCode;
this.reason = eventReason;
this.data = eventData;
}
/**
* Obtain the primary type of event.
*
* @return the code indicating the event's type.
*/
public int getCode() {
return code;
}
/**
* Set the primary type of event.
*
* @param code the code indicating the event's type.
*/
public void setCode(int code) {
this.code = code;
}
/**
* Obtain the data associated with the event.
*
* @return the data associated with the event
*/
public String getData() {
return data;
}
/**
* Set the data associated with the event.
*
* @param data the data associated with the event.
*/
public void setData(String data) {
this.data = data;
}
/**
* Obtain the subtype of event.
*
* @return the code indicating the event's subtype
*/
public int getReason() {
return reason;
}
/**
* Set the subtype of event.
*
* @param reason the code indicating the event's subtype.
*/
public void setReason(int reason) {
this.reason = reason;
}
/**
* Obtain the session associated with the event.
*
* @return the session associated with the event.
*/
public Session getSession() {
return session;
}
/**
* Set the session associated with the event.
*
* @param session the session associated with the event.
*/
public void setSession(Session session) {
this.session = session;
}
/**
* Obtain the timestamp of when the event occured.
*
* @return the time the event occured.
*/
public Date getTimestamp() {
return time;
}
/**
* Set the timestamp of when the event occured.
*
* @param time the time the event occured.
*/
public void setTimestamp(Date time) {
this.time = time;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -