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); + } +}