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 java.util.DategetGroupLastSynced()java.util.Collection<java.lang.String>getGroups()get the list of groups who would be syncronisedjava.util.DategetPersonLastSynced()java.util.Collection<java.lang.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
java.util.Collection<java.lang.String> getUsers()
get the list of users who would be synchronised- Returns:
- the list of users who would be synchronized
-
getGroups
java.util.Collection<java.lang.String> getGroups()
get the list of groups who would be syncronised- Returns:
- the list of groups who would be synchronized
-
getPersonLastSynced
java.util.Date getPersonLastSynced()
- Returns:
- Date
-
getGroupLastSynced
java.util.Date getGroupLastSynced()
- Returns:
- Date
-
-