org.netbeans.lib.collab
Interface InviteMessageStatusListener


public interface InviteMessageStatusListener

Since:
version 0.1

Method Summary
 void onRsvp(java.lang.String destination, boolean accepted)
          sent when the invitation is either accepted or denied.
 void onRsvp(java.lang.String destination, Message message, boolean accepted)
          sent when the invitation is either accepted or denied.
 

Method Detail

onRsvp

public void onRsvp(java.lang.String destination,
                   Message message,
                   boolean accepted)
sent when the invitation is either accepted or denied.

Parameters:
message - in response to the invitation. This message is not posted to the conference. It typically contains a justification of declinal of the invitation.
accepted - whether the invitation has been accepted or not.
destination - who the response is from

onRsvp

public void onRsvp(java.lang.String destination,
                   boolean accepted)
sent when the invitation is either accepted or denied. No reason is given as to why the oinvitation has been accepted or declined.

Parameters:
destination - who the response is from
accepted - whether the invitation has been accepted or not.