Added multichat operation set definition and Gibberish protocol implementation. Related issues: Issue #241 , Issue #244, Issue #250

Added an event that would be dispatched upon rejection of outgoing chat room invitations.
cusax-fix
Emil Ivov 19 years ago
parent dc38781184
commit 892fc86c2b

@ -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.event;
import java.util.*;
/**
*
* @author Emil Ivov
*/
public class InvitationRejectedEvent
extends EventObject
{
public InvitationRejectedEvent(Object source)
{
super(source);
}
public static void main(String[] args)
{
}
}
Loading…
Cancel
Save