Interface JobConstrainerEnablerReceiver

All Superinterfaces:
OsidReceiver

public interface JobConstrainerEnablerReceiver extends OsidReceiver

The job constrainer enabler receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted job constrainer enablers.

Like all OsidReceivers, notifications are delivered to JobConstrainerEnablerReceiver serially and a receiver method is not invoked again until any previous invocation has returned.

  • Method Details

    • newJobConstrainerEnablers

      void newJobConstrainerEnablers(Id notificationId, IdList jobConstrainerEnablerIds)
      The callback for notifications of new job constrainer enablers.
      Parameters:
      notificationId - the notification Id
      jobConstrainerEnablerIds - the Ids of the new JobConstrainerEnablers
      Compliance:
      mandatory - This method must be implemented.
    • changedJobConstrainerEnablers

      void changedJobConstrainerEnablers(Id notificationId, IdList jobConstrainerEnablerIds)
      The callback for notification of updated job constrainer enablers.
      Parameters:
      notificationId - the notification Id
      jobConstrainerEnablerIds - the Ids of the updated JobConstrainerEnablers
      Compliance:
      mandatory - This method must be implemented.
    • deletedJobConstrainerEnablers

      void deletedJobConstrainerEnablers(Id notificationId, IdList jobConstrainerEnablerIds)
      The callback for notification of deleted job constrainer enablers.
      Parameters:
      notificationId - the notification Id
      jobConstrainerEnablerIds - the Ids of the deleted JobConstrainerEnablers
      Compliance:
      mandatory - This method must be implemented.