Class SyncImpl.AttributesToGetSyncResultsHandler
java.lang.Object
org.identityconnectors.framework.impl.api.local.operations.AttributesToGetResultsHandler
org.identityconnectors.framework.impl.api.local.operations.SyncImpl.AttributesToGetSyncResultsHandler
- All Implemented Interfaces:
SyncResultsHandler
- Enclosing class:
SyncImpl
public static class SyncImpl.AttributesToGetSyncResultsHandler
extends AttributesToGetResultsHandler
implements SyncResultsHandler
Simple handler to reduce the attributes to only the set of attribute to get.
-
Constructor Summary
ConstructorDescriptionAttributesToGetSyncResultsHandler
(SyncResultsHandler handler, String[] attrsToGet) -
Method Summary
Methods inherited from class org.identityconnectors.framework.impl.api.local.operations.AttributesToGetResultsHandler
reduceToAttrsToGet, reduceToAttrsToGet
-
Constructor Details
-
AttributesToGetSyncResultsHandler
-
-
Method Details
-
handle
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.
-