mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-14 17:58:59 +00:00
Merged 5.2.N-AUDIT-API (5.2.2) to 5.2.N (5.2.2)
137908 anechifor: REPO-2619 - adding implementation of listAuditEntries git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/DEV/5.2.N/root@137968 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -33,7 +33,7 @@ public class AuditEntry
|
||||
{
|
||||
|
||||
private Long id;
|
||||
private Long auditApplicationId;
|
||||
private String auditApplicationId;
|
||||
protected UserInfo createdByUser;
|
||||
protected Date createdAt;
|
||||
protected Map<String, Serializable> values;
|
||||
@@ -43,7 +43,7 @@ public class AuditEntry
|
||||
|
||||
}
|
||||
|
||||
public AuditEntry(Long id, Long auditApplicationId, UserInfo createdByUser, Date createdAt, Map<String, Serializable> values2)
|
||||
public AuditEntry(Long id, String auditApplicationId, UserInfo createdByUser, Date createdAt, Map<String, Serializable> values2)
|
||||
{
|
||||
this.id = id;
|
||||
this.auditApplicationId = auditApplicationId;
|
||||
@@ -62,12 +62,12 @@ public class AuditEntry
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public Long getAuditApplicationId()
|
||||
public String getAuditApplicationId()
|
||||
{
|
||||
return auditApplicationId;
|
||||
}
|
||||
|
||||
public void setAuditApplicationId(Long auditApplicationId)
|
||||
public void setAuditApplicationId(String auditApplicationId)
|
||||
{
|
||||
this.auditApplicationId = auditApplicationId;
|
||||
}
|
||||
|
Reference in New Issue
Block a user