public interface ProgramReceiver extends OsidReceiver
The program receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Programs.
Modifier and Type | Method and Description |
---|---|
void |
changedProgram(Id programId)
The callback for notification of updated programs.
|
void |
deletedProgram(Id programId)
the callback for notification of deleted programs.
|
void |
newProgram(Id programId)
The callback for notifications of new programs.
|
down, up
void newProgram(Id programId)
programId
- the Id
of the new Program
mandatory
- This method must be implemented. void changedProgram(Id programId)
programId
- the Id
of the updated Program
mandatory
- This method must be implemented. void deletedProgram(Id programId)
programId
- the Id
of the deleted Program
mandatory
- This method must be implemented.