public interface EnrollmentReceiver extends OsidReceiver
The enrollment receiver is the consumer supplied interface for
receiving notifications pertaining to new, updated or deleted
Enrollment
objects.
Modifier and Type | Method and Description |
---|---|
void |
changedEnrollments(Id notificationId,
IdList enrollmentIds)
The callback for notification of updated enrollments.
|
void |
deletedEnrollments(Id notificationId,
IdList enrollmentIds)
the callback for notification of deleted enrollments.
|
void |
newEnrollments(Id notificationId,
IdList enrollmentIds)
The callback for notifications of new enrollments.
|
down, up
void newEnrollments(Id notificationId, IdList enrollmentIds)
notificationId
- the notification Id
enrollmentIds
- the Ids
of the new
Enrollments
mandatory
- This method must be implemented. void changedEnrollments(Id notificationId, IdList enrollmentIds)
notificationId
- the notification Id
enrollmentIds
- the Ids
of the updated
Enrollments
mandatory
- This method must be implemented.