Package org.alfresco.repo.security.sync
Interface SynchronizeDiagnostic
-
- All Known Implementing Classes:
SynchronizeDiagnosticImpl
public interface SynchronizeDiagnosticThe result of a synch- Author:
- mrogers
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DategetGroupLastSynced()Collection<String>getGroups()get the list of groups who would be syncronisedDategetPersonLastSynced()Collection<String>getUsers()get the list of users who would be synchronisedbooleanisActive()Is the user directory active
-
-
-
Method Detail
-
isActive
boolean isActive()
Is the user directory active- Returns:
- true if active
-
getUsers
Collection<String> getUsers()
get the list of users who would be synchronised- Returns:
- the list of users who would be synchronized
-
getGroups
Collection<String> getGroups()
get the list of groups who would be syncronised- Returns:
- the list of groups who would be synchronized
-
getPersonLastSynced
Date getPersonLastSynced()
- Returns:
- Date
-
getGroupLastSynced
Date getGroupLastSynced()
- Returns:
- Date
-
-