diff --git a/src/net/java/sip/communicator/service/protocol/event/InvitationListener.java b/src/net/java/sip/communicator/service/protocol/event/InvitationListener.java deleted file mode 100644 index 6fd24ec24..000000000 --- a/src/net/java/sip/communicator/service/protocol/event/InvitationListener.java +++ /dev/null @@ -1,24 +0,0 @@ -/* - * 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; - -/** - * A listener that is fired anytime an invitation to join a MUC room is received. - * - * @author Emil Ivov - */ -public interface InvitationListener -{ - /** - * Called when we receive an invitation to join an existing ChatRoom. - *

- * @param evt the InvitationReceivedEvent that contains the newly - * received invitation and its source provider. - */ - public abstract void invitationReceived(InvitationReceivedEvent evt); - -}