Package org.openiam.srvc.idm
Interface AsynchIdentitySynchService
-
- All Known Implementing Classes:
AsynchIdentitySynchServiceImpl
public interface AsynchIdentitySynchService
Interface forAsynchIdentitySynchService
. This interface is used in an asynchronous manner.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
bulkUserMigration(BulkMigrationConfig config)
Moves a set of users from resource or role.Response
checkSynchStatus(SynchConfig config)
int
getRunningSyncStatus(String syncId)
void
resetRunningSyncStatus(String syncId)
void
resynchRole(String roleId)
Asynchronous interface to allow for role re-synchroniation.void
startCustomSynchronization(SynchConfig config, String additionalValues)
void
startSynchronization(SynchConfig config)
Response
testConnection(SynchConfig config)
-
-
-
Method Detail
-
startSynchronization
void startSynchronization(SynchConfig config)
-
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)
-
checkSynchStatus
Response checkSynchStatus(SynchConfig config)
-
getRunningSyncStatus
int getRunningSyncStatus(String syncId)
-
resetRunningSyncStatus
void resetRunningSyncStatus(String syncId)
-
-