From f591ba84e04f5e6f99c61e67aea6a256d60b65eb Mon Sep 17 00:00:00 2001 From: Emil Ivov Date: Thu, 22 Feb 2007 12:35:41 +0000 Subject: [PATCH] Added multichat operation set definition and Gibberish protocol implementation. Related issues: Issue #241 , Issue #244, Issue #250 Added to repo. --- .../protocol/InvitationReceivedEvent.java | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 src/net/java/sip/communicator/service/protocol/InvitationReceivedEvent.java diff --git a/src/net/java/sip/communicator/service/protocol/InvitationReceivedEvent.java b/src/net/java/sip/communicator/service/protocol/InvitationReceivedEvent.java new file mode 100644 index 000000000..4e84e045d --- /dev/null +++ b/src/net/java/sip/communicator/service/protocol/InvitationReceivedEvent.java @@ -0,0 +1,26 @@ +/* + * SIP Communicator, the OpenSource Java VoIP and Instant Messaging client. + * + * Distributable under LGPL license. + * See terms of license at gnu.org. + */ +package net.java.sip.communicator.service.protocol; + +/** + * Delivered when we receive an invitation for joining an existing chat room. + * If the corresponding chat room requires a password, then it could be + * retreived by the getPassword() method. The method would return null if no + * password is necessary to join the specified chat room. + * + * @author Emil Ivov + */ +public class InvitationReceivedEvent + extends java.util.EventObject +{ + + public InvitationReceivedEvent(ProtocolProviderService srcProvider, + ChatRoom chatRoom) + { + super(srcProvider); + } +}