Package org.openiam.sync.service
Interface SynchronizationDataService
-
- All Known Implementing Classes:
SynchronizationDataServiceImpl
public interface SynchronizationDataServiceInterface forAsynchIdentitySynchService. This interface is used in an asynchronous manner.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidbulkUserMigration(BulkMigrationConfig config)Moves a set of users from resource or role.IntResponsegetRunningSyncStatus(String id)ResponsegetSynchStatus(SynchConfig config)voidprocessPart(PartialDataProcessingRequest request)voidresetRunningSyncStatus(String id)voidresynchRole(String roleId)Asynchronous interface to allow for role re-synchroniation.voidstartCustomSynchronization(SynchConfig config, String additionalValues)voidstartSynchronization(String configId, List<LineObject> dataFromTargetSystem)voidstartSynchronization(SynchConfig config)ResponsetestConnection(SynchConfig config)
-
-
-
Method Detail
-
startSynchronization
void startSynchronization(SynchConfig config) throws BasicDataServiceException
- Throws:
BasicDataServiceException
-
startSynchronization
void startSynchronization(String configId, List<LineObject> dataFromTargetSystem) throws BasicDataServiceException
- Throws:
BasicDataServiceException
-
startCustomSynchronization
void startCustomSynchronization(SynchConfig config, String additionalValues)
-
bulkUserMigration
void bulkUserMigration(BulkMigrationConfig config)
Moves a set of users from resource or role. Users are selected based on some search criteria defined in the config object.- Parameters:
config-
-
resynchRole
void resynchRole(String roleId)
Asynchronous interface to allow for role re-synchroniation. When resources associated with a role have been modified, the role membership needs to be resynchronized- Parameters:
roleId-
-
testConnection
Response testConnection(SynchConfig config)
-
processPart
void processPart(PartialDataProcessingRequest request)
-
getSynchStatus
Response getSynchStatus(SynchConfig config)
-
getRunningSyncStatus
IntResponse getRunningSyncStatus(String id)
-
resetRunningSyncStatus
void resetRunningSyncStatus(String id)
-
-