mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Merged HEAD-BUG-FIX (5.0/Cloud) to HEAD (4.3/Cloud)
74282: Removed unused and untested bridge table options git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@74892 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -131,8 +131,6 @@ public class AuthorityDAOImpl implements AuthorityDAO, NodeServicePolicies.Befor
|
||||
|
||||
private boolean useBridgeTable = true;
|
||||
|
||||
private boolean useGetContainingAuthoritiesForIsAuthorityContained = true;
|
||||
|
||||
private QNameDAO qnameDAO;
|
||||
private CannedQueryDAO cannedQueryDAO;
|
||||
private AclDAO aclDao;
|
||||
@@ -261,14 +259,6 @@ public class AuthorityDAOImpl implements AuthorityDAO, NodeServicePolicies.Befor
|
||||
this.cannedQueryRegistry = cannedQueryRegistry;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param useGetContainingAuthoritiesForHasAuthority the useGetContainingAuthoritiesForHasAuthority to set
|
||||
*/
|
||||
public void setUseGetContainingAuthoritiesForIsAuthorityContained(boolean useGetContainingAuthoritiesForIsAuthorityContained)
|
||||
{
|
||||
this.useGetContainingAuthoritiesForIsAuthorityContained = useGetContainingAuthoritiesForIsAuthorityContained;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param authorityBridgeDAO the authorityBridgeDAO to set
|
||||
*/
|
||||
@@ -1157,16 +1147,9 @@ public class AuthorityDAOImpl implements AuthorityDAO, NodeServicePolicies.Befor
|
||||
negativeHits.add(getPooledName(authority));
|
||||
return false;
|
||||
}
|
||||
if(useGetContainingAuthoritiesForIsAuthorityContained)
|
||||
if (authorityBridgeTableCache.isUpToDate())
|
||||
{
|
||||
if(authorityBridgeTableCache.isUpToDate())
|
||||
{
|
||||
return getContainingAuthorities(null, authorityToFind, false).contains(authority);
|
||||
}
|
||||
else
|
||||
{
|
||||
return isAuthorityContained(authorityNodeRef, getPooledName(authority), authorityToFind, positiveHits, negativeHits);
|
||||
}
|
||||
return getContainingAuthorities(null, authorityToFind, false).contains(authority);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@@ -73,23 +73,11 @@ public class AuthorityServiceImpl implements AuthorityService, InitializingBean
|
||||
private Set<String> adminGroups = Collections.emptySet();
|
||||
private Set<String> guestGroups = Collections.emptySet();
|
||||
|
||||
private boolean useGetContainingAuthoritiesForHasAuthority = true;
|
||||
|
||||
public AuthorityServiceImpl()
|
||||
{
|
||||
super();
|
||||
}
|
||||
|
||||
/**
|
||||
* @param useGetContainingAuthoritiesForHasAuthority the useGetContainingAuthoritiesForHasAuthority to set
|
||||
*/
|
||||
public void setUseGetContainingAuthoritiesForHasAuthority(boolean useGetContainingAuthoritiesForHasAuthority)
|
||||
{
|
||||
this.useGetContainingAuthoritiesForHasAuthority = useGetContainingAuthoritiesForHasAuthority;
|
||||
}
|
||||
|
||||
|
||||
|
||||
public void setTenantService(TenantService tenantService)
|
||||
{
|
||||
this.tenantService = tenantService;
|
||||
|
Reference in New Issue
Block a user