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 |
changedProject(Id projectId)
The callback for notification of updated projects.
|
void |
deletedProject(Id projectId)
the callback for notification of deleted projects.
|
void |
newProject(Id projectId)
The callback for notifications of new projects.
|
down, upvoid newProject(Id projectId)
projectId - the Id of the new Project
mandatory - This method must be implemented. void changedProject(Id projectId)
projectId - the Id of the updated Project
mandatory - This method must be implemented. void deletedProject(Id projectId)
projectId - the Id of the registered
Project mandatory - This method must be implemented.