Merged V3.2 to HEAD

15255: ETHREEOH-2484: Default behavior for LDAP sync is now not to abort on a missing UID or GUID, as it seems more robust

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@15256 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Dave Ward
2009-07-17 12:01:16 +00:00
parent 63d84b8482
commit 9b6cac5a74

View File

@@ -134,10 +134,10 @@ public class LDAPUserRegistry implements UserRegistry, InitializingBean, Activat
private boolean errorOnDuplicateGID;
/** Should we error on missing group IDs? */
private boolean errorOnMissingGID = true;
private boolean errorOnMissingGID = false;
/** Should we error on missing user IDs? */
private boolean errorOnMissingUID = true;
private boolean errorOnMissingUID = false;
/** An array of all LDAP attributes to be queried from users */
private String[] userAttributeNames;