public interface PersonReceiver extends OsidReceiver
The person receiver is the consumer supplied interface for receiving notifications pertaining to new or deleted persons.
| Modifier and Type | Method and Description |
|---|---|
void |
changedPersons(IdList personIds)
The callback for notifications of updated persons.
|
void |
deletedPersons(IdList personIds)
the callback for notification of deleted persons.
|
void |
newPersons(IdList personIds)
The callback for notifications of new persons.
|
down, upvoid newPersons(IdList personIds)
personIds - the Ids of the new personsmandatory - This method must be implemented. void changedPersons(IdList personIds)
personIds - the Ids of the updated personsmandatory - This method must be implemented. void deletedPersons(IdList personIds)
personIds - the Ids of the deleted personsmandatory - This method must be implemented.