public interface PositionReceiver extends OsidReceiver
The position receiver is the consumer supplied interface for receiving notifications pertaining to new or deleted positions.
| Modifier and Type | Method and Description |
|---|---|
void |
changedPositions(IdList positionIds)
The callback for notifications of updated positions.
|
void |
deletedPositions(IdList positionIds)
the callback for notification of deleted positions.
|
void |
newPositions(IdList positionIds)
The callback for notifications of new positions.
|
down, upvoid newPositions(IdList positionIds)
positionIds - the Ids of the new positionsmandatory - This method must be implemented. void changedPositions(IdList positionIds)
positionIds - the Ids of the updated positionsmandatory - This method must be implemented. void deletedPositions(IdList positionIds)
positionIds - the Ids of the deleted positionsmandatory - This method must be implemented.