Interface ParameterProcessorEnablerReceiver

All Superinterfaces:
OsidReceiver

public interface ParameterProcessorEnablerReceiver extends OsidReceiver

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

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    changedParameterProcessorEnablers(Id notificationId, IdList parameterProcessorEnablerIds)
    The callback for notification of updated parameter processor enablers.
    void
    deletedParameterProcessorEnablers(Id notificationId, IdList parameterProcessorEnablerIds)
    The callback for notification of deleted parameter processor enablers.
    void
    newParameterProcessorEnablers(Id notificationId, IdList parameterProcessorEnablerIds)
    The callback for notifications of new parameter processor enablers.

    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

    • newParameterProcessorEnablers

      void newParameterProcessorEnablers(Id notificationId, IdList parameterProcessorEnablerIds)
      The callback for notifications of new parameter processor enablers.
      Parameters:
      notificationId - the notification Id
      parameterProcessorEnablerIds - the Id of the new ParameterProcessorEnablers
      Compliance:
      mandatory - This method must be implemented.
    • changedParameterProcessorEnablers

      void changedParameterProcessorEnablers(Id notificationId, IdList parameterProcessorEnablerIds)
      The callback for notification of updated parameter processor enablers.
      Parameters:
      notificationId - the notification Id
      parameterProcessorEnablerIds - the Id of the updated ParameterProcessorEnablers
      Compliance:
      mandatory - This method must be implemented.
    • deletedParameterProcessorEnablers

      void deletedParameterProcessorEnablers(Id notificationId, IdList parameterProcessorEnablerIds)
      The callback for notification of deleted parameter processor enablers.
      Parameters:
      notificationId - the notification Id
      parameterProcessorEnablerIds - the Id of the deleted ParameterProcessorEnablers
      Compliance:
      mandatory - This method must be implemented.