Interface CredentialEntryReceiver

All Superinterfaces:
OsidReceiver

public interface CredentialEntryReceiver extends OsidReceiver

The credential entry receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted credential entries.

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedCredentialEntries(Id notificationId, IdList credentialEntryIds)
    The callback for notification of updated credential entries.
    void
    deletedCredentialEntries(Id notificationId, IdList credentialEntryIds)
    the callback for notification of deleted credential entries.
    void
    newCredentialEntries(Id notificationId, IdList credentialEntryIds)
    The callback for notifications of new credential entries.

    Methods inherited from interface OsidReceiver

    down, up
    Modifier and Type
    Method
    Description
    void
    The callback for notifications that the notification bus is not operating.
    void
    up()
    The callback for notifications that the notification bus is operational.
  • Method Details

    • newCredentialEntries

      void newCredentialEntries(Id notificationId, IdList credentialEntryIds)
      The callback for notifications of new credential entries.
      Parameters:
      notificationId - the notification Id
      credentialEntryIds - the Ids of the new CredentialEntries
      Compliance:
      mandatory - This method must be implemented.
    • changedCredentialEntries

      void changedCredentialEntries(Id notificationId, IdList credentialEntryIds)
      The callback for notification of updated credential entries.
      Parameters:
      notificationId - the notification Id
      credentialEntryIds - the Ids of the updated CredentialEntries
      Compliance:
      mandatory - This method must be implemented.
    • deletedCredentialEntries

      void deletedCredentialEntries(Id notificationId, IdList credentialEntryIds)
      the callback for notification of deleted credential entries.
      Parameters:
      notificationId - the notification Id
      credentialEntryIds - the Ids of the deleted CredentialEntries
      Compliance:
      mandatory - This method must be implemented.