mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Two new editable properties supported by Synchronization Subsystem
- synchronization.syncWhenMissingPeopleLogIn - synchronization.autoCreatePeopleOnLogin When both are false you can now cause users who your LDAP sync doesn't bring in to be rejected (seems to be a requirement) git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@14814 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -31,7 +31,18 @@ package org.alfresco.repo.security.sync;
|
||||
* @author dward
|
||||
*/
|
||||
public interface UserRegistrySynchronizer
|
||||
{
|
||||
{
|
||||
/**
|
||||
* Creates a person object for a successfully authenticated user who does not yet have a person object, if allowed
|
||||
* to by configuration. Depending on configuration, may trigger a partial synchronize and/or create a new person
|
||||
* with default settings.
|
||||
*
|
||||
* @param username
|
||||
* the user name
|
||||
* @return true, if a person is created
|
||||
*/
|
||||
public boolean createMissingPerson(String username);
|
||||
|
||||
/**
|
||||
* Retrieves timestamped user and group information from configured external sources and compares it with the local
|
||||
* users and groups last retrieved from the same sources. Any updates and additions made to those users and groups
|
||||
|
Reference in New Issue
Block a user