public interface ProjectReceiver extends OsidReceiver
The project receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Project
objects.
Modifier and Type | Method and Description |
---|---|
void |
changedProjects(IdList projectIds)
The callback for notification of updated projects.
|
void |
deletedProjects(IdList projectIds)
the callback for notification of deleted projects.
|
void |
newProjects(IdList projectIds)
The callback for notifications of new projects.
|
down, up
void newProjects(IdList projectIds)
projectIds
- the Ids
of the new Projects
mandatory
- This method must be implemented. void changedProjects(IdList projectIds)
projectIds
- the Ids
of the updated
Projects
mandatory
- This method must be implemented. void deletedProjects(IdList projectIds)
projectIds
- the Ids
of the registered
Projects
mandatory
- This method must be implemented.