mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-10-08 14:51:49 +00:00
125603 rmunteanu: Merged 5.1.1 (5.1.1) to 5.1.N (5.1.2) 125484 slanglois: MNT-16155 Update source headers - remove old Copyrights from Java and JSP dource files git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/DEV/5.2.N/root@125781 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
76 lines
1.8 KiB
Java
76 lines
1.8 KiB
Java
package org.alfresco.repo.domain.audit;
|
|
|
|
import java.util.Date;
|
|
import java.util.List;
|
|
|
|
/**
|
|
* Deletion parameters for <b>alf_audit_entry</b> table.
|
|
*
|
|
* @author Derek Hulley
|
|
* @since 3.2
|
|
*/
|
|
public class AuditDeleteParameters
|
|
{
|
|
private Long auditApplicationId;
|
|
private Long auditFromTime;
|
|
private Long auditToTime;
|
|
private List<Long> auditEntryIds;
|
|
|
|
public AuditDeleteParameters()
|
|
{
|
|
}
|
|
|
|
@Override
|
|
public String toString()
|
|
{
|
|
StringBuilder sb = new StringBuilder(512);
|
|
sb.append("AuditDeleteParameters")
|
|
.append("[ auditApplicationId=").append(auditApplicationId)
|
|
.append(", auditFromTime").append(auditFromTime == null ? null : new Date(auditFromTime))
|
|
.append(", auditToTime").append(auditToTime == null ? null : new Date(auditToTime))
|
|
.append(", auditEntryIds").append(auditEntryIds == null ? null : auditEntryIds.size())
|
|
.append("]");
|
|
return sb.toString();
|
|
}
|
|
|
|
public Long getAuditApplicationId()
|
|
{
|
|
return auditApplicationId;
|
|
}
|
|
|
|
public void setAuditApplicationId(Long auditApplicationId)
|
|
{
|
|
this.auditApplicationId = auditApplicationId;
|
|
}
|
|
|
|
public Long getAuditFromTime()
|
|
{
|
|
return auditFromTime;
|
|
}
|
|
|
|
public void setAuditFromTime(Long auditFromTime)
|
|
{
|
|
this.auditFromTime = auditFromTime;
|
|
}
|
|
|
|
public Long getAuditToTime()
|
|
{
|
|
return auditToTime;
|
|
}
|
|
|
|
public void setAuditToTime(Long auditToTime)
|
|
{
|
|
this.auditToTime = auditToTime;
|
|
}
|
|
|
|
public List<Long> getAuditEntryIds()
|
|
{
|
|
return auditEntryIds;
|
|
}
|
|
|
|
public void setAuditEntryIds(List<Long> auditEntryIds)
|
|
{
|
|
this.auditEntryIds = auditEntryIds;
|
|
}
|
|
}
|