Package ch.ivyteam.ivy.security.synch
Interface SynchronizationListener
-
public interface SynchronizationListenerA listener that gets notifications from a manually startedsecurity systemsynchronization.- API:
- This is a public API.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidhandleFinished(UpdateEvent finalEvent)Called when the asynchronous synchronization job has finished.voidhandleLog(org.apache.log4j.Level level, String message, Throwable exception)voidhandleUpdate(UpdateEvent updateEvent)Called when the synchronization job analyzed a new user for update/delete/keep/add modification
-
-
-
Method Detail
-
handleLog
void handleLog(org.apache.log4j.Level level, String message, Throwable exception)- Parameters:
level-message-exception- maynullif the log source was not a catched exception- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
handleUpdate
void handleUpdate(UpdateEvent updateEvent)
Called when the synchronization job analyzed a new user for update/delete/keep/add modification- Parameters:
updateEvent-- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
handleFinished
void handleFinished(UpdateEvent finalEvent)
Called when the asynchronous synchronization job has finished.- Parameters:
finalEvent- describes the final count of synchronizedusers.- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
-