mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
ALF-9860: RSOLR 034: Incremental Index Fix
- generic fix, supprot to request purge, index and reindex for tx, node, acl-tx and acl (partly to make broken indexes) - expose index fix via JMX - migrate logging in the SOLR project to slf4j to fit the SOLR logging pattern (config to come) git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@29904 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -30,13 +30,13 @@ public class AclReaders
|
||||
{
|
||||
private Long aclId;
|
||||
private Set<String> readers;
|
||||
|
||||
private long aclChangeSetId;
|
||||
|
||||
@Override
|
||||
public String toString()
|
||||
{
|
||||
return "AclReaders [aclId=" + aclId + ", readers=" + readers + "]";
|
||||
return "AclReaders [aclId=" + aclId + ", readers=" + readers + ", aclChangeSetId=" + aclChangeSetId + "]";
|
||||
}
|
||||
|
||||
public Long getAclId()
|
||||
{
|
||||
return aclId;
|
||||
@@ -53,4 +53,13 @@ public class AclReaders
|
||||
{
|
||||
this.readers = aclReaders;
|
||||
}
|
||||
public long getAclChangeSetId()
|
||||
{
|
||||
return aclChangeSetId;
|
||||
}
|
||||
public void setAclChangeSetId(long aclChangeSetId)
|
||||
{
|
||||
this.aclChangeSetId = aclChangeSetId;
|
||||
}
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user