mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-06-16 17:55:15 +00:00
svn merge svn://svn.alfresco.com:3691/alfresco/BRANCHES/V2.0@5141 svn://svn.alfresco.com:3691/alfresco/BRANCHES/V2.0@51352 . - FLOSS - Some files will need a follow-up -root/projects/repository/source/java/org/alfresco/repo/avm/wf/AVMRemoveWFStoreHandler.java (not yet on HEAD: 5094) -root/projects/repository/source/java/org/alfresco/filesys/server/state/FileStateLockManager.java (not yet on HEAD: 5093) -onContentUpdateRecord (not on HEAD) git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@5167 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
394 lines
8.8 KiB
Java
394 lines
8.8 KiB
Java
/*
|
|
* Copyright (C) 2005 Alfresco, Inc.
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation; either version 2
|
|
* of the License, or (at your option) any later version.
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
* As a special exception to the terms and conditions of version 2.0 of
|
|
* the GPL, you may redistribute this Program in connection with Free/Libre
|
|
* and Open Source Software ("FLOSS") applications as described in Alfresco's
|
|
* FLOSS exception. You should have recieved a copy of the text describing
|
|
* the FLOSS exception, and it is also available here:
|
|
* http://www.alfresco.com/legal/licensing"
|
|
*/
|
|
package org.alfresco.repo.audit;
|
|
|
|
import java.io.Serializable;
|
|
import java.net.InetAddress;
|
|
import java.net.UnknownHostException;
|
|
import java.util.Date;
|
|
import java.util.Map;
|
|
|
|
import org.alfresco.repo.security.authentication.AuthenticationUtil;
|
|
import org.alfresco.repo.transaction.AlfrescoTransactionSupport;
|
|
import org.alfresco.service.cmr.repository.StoreRef;
|
|
import org.alfresco.service.namespace.QName;
|
|
import org.apache.log4j.Logger;
|
|
|
|
/**
|
|
* A class to encapsulate audit information supplied to the DAO layer.
|
|
*
|
|
* Null entries should be stored.
|
|
*
|
|
* @author Andy Hind
|
|
*/
|
|
public class AuditInfo
|
|
{
|
|
private static Logger s_logger = Logger.getLogger(AuditInfo.class);
|
|
|
|
/**
|
|
* The user identifier for the person who caused this audit entry
|
|
*/
|
|
private String userIdentifier;
|
|
|
|
/**
|
|
* The date for this audit entry
|
|
*/
|
|
private Date date;
|
|
|
|
/**
|
|
* The transaction id in which this entry was made
|
|
*/
|
|
private String txId;
|
|
|
|
/**
|
|
* The session is for this action
|
|
*/
|
|
private String sessionId;
|
|
|
|
/**
|
|
* The store in which the action occured.
|
|
*/
|
|
private StoreRef keyStore;
|
|
|
|
/**
|
|
* For a node ref, the node for the action.
|
|
*/
|
|
private String keyGUID;
|
|
|
|
/**
|
|
* The path of the key
|
|
*/
|
|
private String keyPath;
|
|
|
|
/**
|
|
* The audit application
|
|
* Internal uses the "System" key and will only audit method information.
|
|
*/
|
|
private String auditApplication;
|
|
|
|
/**
|
|
* The service holding the audited method.
|
|
*/
|
|
private String auditService;
|
|
|
|
/**
|
|
* The name of the audited method.
|
|
*/
|
|
private String auditMethod;
|
|
|
|
/**
|
|
* Did this entry passa filter?
|
|
* If false - all entries were being recorded.
|
|
*/
|
|
private boolean filtered;
|
|
|
|
/**
|
|
* The audit configuration in use at the time.
|
|
*/
|
|
private AuditConfiguration auditConfiguration;
|
|
|
|
/**
|
|
* The object returned by the audited method.
|
|
*/
|
|
private Serializable returnObject;
|
|
|
|
/**
|
|
* The arguments to the audited method.
|
|
*/
|
|
private Serializable[] methodArguments;
|
|
|
|
/**
|
|
* Any Exception thrown by the audited method.
|
|
*/
|
|
private Throwable throwable;
|
|
|
|
/**
|
|
* Did the audited method throw an exception?
|
|
*/
|
|
private boolean fail;
|
|
|
|
/**
|
|
* The host address for where the audit was generated.
|
|
*/
|
|
private InetAddress hostAddress;
|
|
|
|
private static InetAddress s_hostAddress;
|
|
|
|
/**
|
|
* The client address causing the audit
|
|
*/
|
|
private InetAddress clientAddress;
|
|
|
|
/**
|
|
* The properties of the key node before the method execution.
|
|
*/
|
|
private Map<QName, Serializable> keyPropertiesBefore;
|
|
|
|
/**
|
|
* The properties of the key node after the method execution.
|
|
*/
|
|
private Map<QName, Serializable> keyPropertiesAfter;
|
|
|
|
/**
|
|
* For general auditing - the audit message.
|
|
*/
|
|
private String message;
|
|
|
|
static
|
|
{
|
|
try
|
|
{
|
|
s_hostAddress = InetAddress.getLocalHost();
|
|
}
|
|
catch (UnknownHostException e)
|
|
{
|
|
s_logger.error(e);
|
|
s_hostAddress = null;
|
|
}
|
|
}
|
|
|
|
public AuditInfo(AuditConfiguration auditConfiguration)
|
|
{
|
|
super();
|
|
// Add default information
|
|
userIdentifier = AuthenticationUtil.getCurrentUserName();
|
|
date = new Date();
|
|
txId = AlfrescoTransactionSupport.getTransactionId();
|
|
sessionId = "Unavailable";
|
|
hostAddress = s_hostAddress;
|
|
}
|
|
|
|
public String getAuditApplication()
|
|
{
|
|
return auditApplication;
|
|
}
|
|
|
|
public void setAuditApplication(String auditApplication)
|
|
{
|
|
this.auditApplication = auditApplication;
|
|
}
|
|
|
|
public AuditConfiguration getAuditConfiguration()
|
|
{
|
|
return auditConfiguration;
|
|
}
|
|
|
|
public void setAuditConfiguration(AuditConfiguration auditConfiguration)
|
|
{
|
|
this.auditConfiguration = auditConfiguration;
|
|
}
|
|
|
|
public String getAuditMethod()
|
|
{
|
|
return auditMethod;
|
|
}
|
|
|
|
public void setAuditMethod(String auditMethod)
|
|
{
|
|
this.auditMethod = auditMethod;
|
|
}
|
|
|
|
public String getAuditService()
|
|
{
|
|
return auditService;
|
|
}
|
|
|
|
public void setAuditService(String auditService)
|
|
{
|
|
this.auditService = auditService;
|
|
}
|
|
|
|
public InetAddress getClientAddress()
|
|
{
|
|
return clientAddress;
|
|
}
|
|
|
|
public void setClientAddress(InetAddress clientAddress)
|
|
{
|
|
this.clientAddress = clientAddress;
|
|
}
|
|
|
|
public Date getDate()
|
|
{
|
|
return date;
|
|
}
|
|
|
|
public void setDate(Date date)
|
|
{
|
|
this.date = date;
|
|
}
|
|
|
|
public boolean isFail()
|
|
{
|
|
return fail;
|
|
}
|
|
|
|
public void setFail(boolean fail)
|
|
{
|
|
this.fail = fail;
|
|
}
|
|
|
|
public boolean isFiltered()
|
|
{
|
|
return filtered;
|
|
}
|
|
|
|
public void setFiltered(boolean filtered)
|
|
{
|
|
this.filtered = filtered;
|
|
}
|
|
|
|
public InetAddress getHostAddress()
|
|
{
|
|
return hostAddress;
|
|
}
|
|
|
|
public void setHostAddress(InetAddress hostAddress)
|
|
{
|
|
this.hostAddress = hostAddress;
|
|
}
|
|
|
|
public String getKeyGUID()
|
|
{
|
|
return keyGUID;
|
|
}
|
|
|
|
public void setKeyGUID(String keyGUID)
|
|
{
|
|
this.keyGUID = keyGUID;
|
|
}
|
|
|
|
public Map<QName, Serializable> getKeyPropertiesAfter()
|
|
{
|
|
return keyPropertiesAfter;
|
|
}
|
|
|
|
public void setKeyPropertiesAfter(Map<QName, Serializable> keyPropertiesAfter)
|
|
{
|
|
this.keyPropertiesAfter = keyPropertiesAfter;
|
|
}
|
|
|
|
public Map<QName, Serializable> getKeyPropertiesBefore()
|
|
{
|
|
return keyPropertiesBefore;
|
|
}
|
|
|
|
public void setKeyPropertiesBefore(Map<QName, Serializable> keyPropertiesBefore)
|
|
{
|
|
this.keyPropertiesBefore = keyPropertiesBefore;
|
|
}
|
|
|
|
public StoreRef getKeyStore()
|
|
{
|
|
return keyStore;
|
|
}
|
|
|
|
public void setKeyStore(StoreRef keyStore)
|
|
{
|
|
this.keyStore = keyStore;
|
|
}
|
|
|
|
public String getMessage()
|
|
{
|
|
return message;
|
|
}
|
|
|
|
public void setMessage(String message)
|
|
{
|
|
this.message = message;
|
|
}
|
|
|
|
public Serializable[] getMethodArguments()
|
|
{
|
|
return methodArguments;
|
|
}
|
|
|
|
public void setMethodArguments(Serializable[] methodArguments)
|
|
{
|
|
this.methodArguments = methodArguments;
|
|
}
|
|
|
|
public String getPath()
|
|
{
|
|
return keyPath;
|
|
}
|
|
|
|
public void setPath(String keyPath)
|
|
{
|
|
this.keyPath = keyPath;
|
|
}
|
|
|
|
public Serializable getReturnObject()
|
|
{
|
|
return returnObject;
|
|
}
|
|
|
|
public void setReturnObject(Serializable returnObject)
|
|
{
|
|
this.returnObject = returnObject;
|
|
}
|
|
|
|
public String getSessionId()
|
|
{
|
|
return sessionId;
|
|
}
|
|
|
|
public void setSessionId(String sessionId)
|
|
{
|
|
this.sessionId = sessionId;
|
|
}
|
|
|
|
public Throwable getThrowable()
|
|
{
|
|
return throwable;
|
|
}
|
|
|
|
public void setThrowable(Throwable throwable)
|
|
{
|
|
this.throwable = throwable;
|
|
}
|
|
|
|
public String getTxId()
|
|
{
|
|
return txId;
|
|
}
|
|
|
|
public void setTxId(String txId)
|
|
{
|
|
this.txId = txId;
|
|
}
|
|
|
|
public String getUserIdentifier()
|
|
{
|
|
return userIdentifier;
|
|
}
|
|
|
|
public void setUserIdentifier(String userIdentifier)
|
|
{
|
|
this.userIdentifier = userIdentifier;
|
|
}
|
|
|
|
}
|