public interface ProfileEntryEnablerReceiver extends OsidReceiver
The profile entry enabler receiver is the consumer supplied interface for receiving notifications pertaining to new, updated or deleted profile entry enablers.
Modifier and Type | Method and Description |
---|---|
void |
changedProfileEntryEnabler(Id profileEntryEnablerId)
The callback for notification of updated profile entry enablers.
|
void |
deletedProfileEntryEnabler(Id profileEntryEnablerId)
The callback for notification of deleted profile entry enablers.
|
void |
newProfileEntryEnabler(Id profileEntryEnablerId)
The callback for notifications of new profile entry enablers.
|
down, up
void newProfileEntryEnabler(Id profileEntryEnablerId)
profileEntryEnablerId
- the Id
of the new
ProfileEntryEnabler
mandatory
- This method must be implemented. void changedProfileEntryEnabler(Id profileEntryEnablerId)
profileEntryEnablerId
- the Id
of the updated
ProfileEntryEnabler
mandatory
- This method must be implemented. void deletedProfileEntryEnabler(Id profileEntryEnablerId)
profileEntryEnablerId
- the Id
of the deleted
ProfileEntryEnabler
mandatory
- This method must be implemented.