Package com.soffid.iam.sync.intf
Interface AuthoritativeIdentitySource2
-
public interface AuthoritativeIdentitySource2
Enables authoritative data sources- Author:
- Soffid
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Collection<AuthoritativeChange>
getChanges(String lastChange)
Gets the pending changesString
getNextChange()
Gets the next bunch of changesboolean
hasMoreData()
Check if there is more data to load
-
-
-
Method Detail
-
getChanges
Collection<AuthoritativeChange> getChanges(String lastChange) throws InternalErrorException
Gets the pending changes- Parameters:
lastChange
- the last succesful change loaded- Returns:
- a list of changes to apply
- Throws:
InternalErrorException
-
hasMoreData
boolean hasMoreData() throws InternalErrorException
Check if there is more data to load- Returns:
- true if there is more data to load
- Throws:
InternalErrorException
-
getNextChange
String getNextChange() throws InternalErrorException
Gets the next bunch of changes- Returns:
- a list of changes
- Throws:
InternalErrorException
-
-