public interface OntologyReceiver extends OsidReceiver
The vault receiver is the consumer supplied interface for receiving
notifications pertaining to new, updated or deleted Ontology
objects.
| Modifier and Type | Method and Description |
|---|---|
void |
changedChildOfOntologies(Id notificationId,
IdList ontologyIds)
The callback for notifications of changes to children of ontologies
hierarchy nodes.
|
void |
changedOntologies(Id notificationId,
IdList ontologyIds)
The callback for notification of updated ontologies.
|
void |
deletedOntologies(Id notificationId,
IdList ontologyIds)
The callback for notification of deleted ontologies.
|
void |
newOntologies(Id notificationId,
IdList ontologyIds)
The callback for notifications of new ontologies.
|
down, upvoid newOntologies(Id notificationId, IdList ontologyIds)
notificationId - the notification Id ontologyIds - the Ids of the new
Ontologies mandatory - This method must be implemented. void changedOntologies(Id notificationId, IdList ontologyIds)
notificationId - the notification Id ontologyIds - the Ids of the updated
Ontologies mandatory - This method must be implemented. void deletedOntologies(Id notificationId, IdList ontologyIds)
notificationId - the notification Id ontologyIds - the Ids of the deleted
Ontologies mandatory - This method must be implemented. void changedChildOfOntologies(Id notificationId, IdList ontologyIds)
notificationId - the notification Id ontologyIds - the Ids of the Ontologies
whose children have changedmandatory - This method must be implemented.