Package org.alfresco.repo.security.sync
Interface ChainingUserRegistrySynchronizerStatus
-
- All Known Implementing Classes:
ChainingUserRegistrySynchronizer
public interface ChainingUserRegistrySynchronizerStatusReports upon the status of the ChainingUserRegistrySynchronizer- Author:
- mrogers
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetLastErrorMessage()The last error message or null if last sync completed without errorjava.lang.StringgetLastRunOnServer()Get the serveridjava.util.DategetSyncEndTime()Get the end date/time of the last synchronizationjava.lang.StringgetSynchronizationLastError(java.lang.String zoneId)Get the last error message from synchronizing this zonejava.util.DategetSynchronizationLastGroupUpdateTime(java.lang.String zoneId)Get the date/time that the last group update completedjava.util.DategetSynchronizationLastUserUpdateTime(java.lang.String zoneId)Get the date/time that the last user/person update completedjava.lang.StringgetSynchronizationStatus()java.lang.StringgetSynchronizationStatus(java.lang.String zoneId)Get the synchronization statusjava.lang.StringgetSynchronizationSummary(java.lang.String zoneId)Get the synchronization summary message for the specified zonejava.util.DategetSyncStartTime()Get the start date/time of the last synchronization
-
-
-
Method Detail
-
getSyncStartTime
java.util.Date getSyncStartTime()
Get the start date/time of the last synchronization- Returns:
- the date/time or null
-
getSyncEndTime
java.util.Date getSyncEndTime()
Get the end date/time of the last synchronization- Returns:
- the date/time or null
-
getLastErrorMessage
java.lang.String getLastErrorMessage()
The last error message or null if last sync completed without error- Returns:
- the last error message or null
-
getLastRunOnServer
java.lang.String getLastRunOnServer()
Get the serverid- Returns:
- the server id of the sever that last ran sync
-
getSynchronizationStatus
java.lang.String getSynchronizationStatus(java.lang.String zoneId)
Get the synchronization status- Parameters:
zoneId- - zone id- Returns:
- the status
-
getSynchronizationLastUserUpdateTime
java.util.Date getSynchronizationLastUserUpdateTime(java.lang.String zoneId)
Get the date/time that the last user/person update completed- Parameters:
zoneId- String- Returns:
- date or null if sync has never completed
-
getSynchronizationLastGroupUpdateTime
java.util.Date getSynchronizationLastGroupUpdateTime(java.lang.String zoneId)
Get the date/time that the last group update completed- Parameters:
zoneId- String- Returns:
- date or null if sync has never completed
-
getSynchronizationLastError
java.lang.String getSynchronizationLastError(java.lang.String zoneId)
Get the last error message from synchronizing this zone- Parameters:
zoneId- the zone- Returns:
- the last error message or null if the last sync did not have an error
-
getSynchronizationSummary
java.lang.String getSynchronizationSummary(java.lang.String zoneId)
Get the synchronization summary message for the specified zone- Parameters:
zoneId- the zone- Returns:
- the summary or null
-
getSynchronizationStatus
java.lang.String getSynchronizationStatus()
- Returns:
- String
-
-