Jitsi: the OpenSource Java VoIP and Instant Messaging client.

net.java.sip.communicator.service.protocol.event
Interface WhiteboardObjectListener

All Superinterfaces:
EventListener
All Known Implementing Classes:
WhiteboardSessionManager

public interface WhiteboardObjectListener
extends EventListener

A listener that would gather events notifying of WhiteboardObject delivery status.

Author:
Julien Waechter, Emil Ivov

Method Summary
 void whiteboardObjecModified(WhiteboardObjectModifiedEvent evt)
          Called when a modified WhiteboardObject has been modified remotely.
 void whiteboardObjectDeleted(WhiteboardObjectDeletedEvent evt)
          Called when a deleted WhiteboardObject has been received.
 void whiteboardObjectDelivered(WhiteboardObjectDeliveredEvent evt)
          Called when the underlying implementation has received an indication that a WhiteboardObject, sent earlier has been successfully received by the destination.
 void whiteboardObjectDeliveryFailed(WhiteboardObjectDeliveryFailedEvent evt)
          Called to indicated that delivery of a WhiteboardObject sent earlier has failed.
 void whiteboardObjectReceived(WhiteboardObjectReceivedEvent evt)
          Called when a new incoming WhiteboardObject has been received.
 

Method Detail

whiteboardObjectReceived

void whiteboardObjectReceived(WhiteboardObjectReceivedEvent evt)
Called when a new incoming WhiteboardObject has been received.

Parameters:
evt - the WhiteboardObjectReceivedEvent containing the newly received WhiteboardObject, its sender and other details.

whiteboardObjectDeleted

void whiteboardObjectDeleted(WhiteboardObjectDeletedEvent evt)
Called when a deleted WhiteboardObject has been received.

Parameters:
evt - the WhiteboardObjectDeletedEvent containing the identification of the deleted WhiteboardObject, its sender and other details.

whiteboardObjecModified

void whiteboardObjecModified(WhiteboardObjectModifiedEvent evt)
Called when a modified WhiteboardObject has been modified remotely.

Parameters:
evt - the WhiteboardObjectModifiedEvent containing the modified WhiteboardObject, its sender and other details.

whiteboardObjectDelivered

void whiteboardObjectDelivered(WhiteboardObjectDeliveredEvent evt)
Called when the underlying implementation has received an indication that a WhiteboardObject, sent earlier has been successfully received by the destination.

Parameters:
evt - the WhiteboardObjectDeliveredEvent containing the id of the WhiteboardObject that has caused the event.

whiteboardObjectDeliveryFailed

void whiteboardObjectDeliveryFailed(WhiteboardObjectDeliveryFailedEvent evt)
Called to indicated that delivery of a WhiteboardObject sent earlier has failed. Reason code and phrase are contained by the WhiteboardObjectDeliveryFailedEvent

Parameters:
evt - the WhiteboardObjectDeliveryFailedEvent containing the ID of the WhiteboardObject whose delivery has failed.

Jitsi: the OpenSource Java VoIP and Instant Messaging client.

Jitsi, the OpenSource Java VoIP and Instant Messaging client.
Distributable under LGPL license.