Merged HEAD-BUG-FIX (5.0/Cloud) to HEAD (5.0/Cloud)

77136: Merged PLATFORM1 (5.0/Cloud) to HEAD-BUG-FIX (5.0/Cloud)
      73565: ACE-1685: SolrInformationServer.indexAcls(List<AclReaders>, boolean) now indexes denied authorities.


git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@77991 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Mark Rogers
2014-07-23 15:47:54 +00:00
parent 110047aa9b
commit 4433cb3850
2 changed files with 85 additions and 21 deletions

View File

@@ -18,7 +18,6 @@
*/
package org.alfresco.solr.client;
import java.util.Collections;
import java.util.List;
/**
@@ -53,18 +52,21 @@ public class AclReaders
return "AclReaders [id=" + id + ", readers=" + readers + ", denied=" + denied + ", tenantDomain=" + tenantDomain + "]";
}
/**
* ID should be enough for hashCode() and equals().
*/
@Override
public int hashCode()
{
final int prime = 31;
int result = 1;
result = prime * result + (int) (aclChangeSetId ^ (aclChangeSetId >>> 32));
result = prime * result + (int) (id ^ (id >>> 32));
result = prime * result + ((readers == null) ? 0 : readers.hashCode());
result = prime * result + ((denied == null) ? 0 : denied.hashCode());
return result;
}
/**
* ID should be enough for hashCode() and equals().
*/
@Override
public boolean equals(Object obj)
{
@@ -75,24 +77,8 @@ public class AclReaders
if (getClass() != obj.getClass())
return false;
AclReaders other = (AclReaders) obj;
if (aclChangeSetId != other.aclChangeSetId)
return false;
if (id != other.id)
return false;
if (readers == null)
{
if (other.readers != null)
return false;
}
else if (!readers.equals(other.readers))
return false;
if (denied == null)
{
if (other.denied != null)
return false;
}
else if (!denied.equals(other.denied))
return false;
return true;
}
@@ -108,7 +94,7 @@ public class AclReaders
public List<String> getDenied()
{
return readers;
return denied;
}
public long getAclChangeSetId()