Class NormalizingSyncResultsHandler
- java.lang.Object
-
- org.identityconnectors.framework.impl.api.local.operations.NormalizingSyncResultsHandler
-
- All Implemented Interfaces:
SyncResultsHandler
public class NormalizingSyncResultsHandler extends Object implements SyncResultsHandler
-
-
Constructor Summary
Constructors Constructor Description NormalizingSyncResultsHandler(SyncResultsHandler target, ObjectNormalizerFacade normalizer)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
handle(SyncDelta delta)
Called to handle a delta in the stream.
-
-
-
Constructor Detail
-
NormalizingSyncResultsHandler
public NormalizingSyncResultsHandler(SyncResultsHandler target, ObjectNormalizerFacade normalizer)
-
-
Method Detail
-
handle
public boolean handle(SyncDelta delta)
Description copied from interface:SyncResultsHandler
Called to handle a delta in the stream. The Connector framework will call this method multiple times, once for each result. Although this method is callback, the framework will invoke it synchronously. Thus, the framework guarantees that once an application's call toSyncApiOp#sync()
returns, the framework will no longer call this method to handle results from thatsync()
operation.- Specified by:
handle
in interfaceSyncResultsHandler
- Parameters:
delta
- The change- Returns:
- True if the application wants to continue processing more results.
-
-