/* * Copyright (C) 2005-2008 Jive Software. All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.jivesoftware.openfire.muc; import org.xmpp.packet.JID; import org.xmpp.packet.Message; /** * Interface to listen for MUC events. Use the {@link MUCEventDispatcher#addListener(MUCEventListener)} * method to register for events. * * @author Gaston Dombiak */ public interface MUCEventListener { /** * Event triggered when a new room was created. * * @param roomJID JID of the room that was created. */ void roomCreated(JID roomJID); /** * Event triggered when a room was destroyed. * * @param roomJID JID of the room that was destroyed. */ void roomDestroyed(JID roomJID); /** * Event triggered when a new occupant joins a room. * * @param roomJID the JID of the room where the occupant has joined. * @param user the JID of the user joining the room. * @param nickname nickname of the user in the room. */ void occupantJoined(JID roomJID, JID user, String nickname); /** * Event triggered when an occupant left a room. * * @param roomJID the JID of the room where the occupant has left. * @param user the JID of the user leaving the room. */ void occupantLeft(JID roomJID, JID user); /** * Event triggered when an occupant changed his nickname in a room. * * @param roomJID the JID of the room where the user changed his nickname. * @param user the JID of the user that changed his nickname. * @param oldNickname old nickname of the user in the room. * @param newNickname new nickname of the user in the room. */ void nicknameChanged(JID roomJID, JID user, String oldNickname, String newNickname); /** * Event triggered when a room occupant sent a message to a room. * * @param roomJID the JID of the room that received the message. * @param user the JID of the user that sent the message. * @param nickname nickname used by the user when sending the message. * @param message the message sent by the room occupant. */ void messageReceived(JID roomJID, JID user, String nickname, Message message); /** * Event triggered when a room occupant sent a private message to another room user * * @param toJID the JID of who the message is to. * @param fromJID the JID of who the message came from. * @param message the message sent to user. */ void privateMessageRecieved(JID toJID, JID fromJID, Message message); /** * Event triggered when the subject of a room is changed. * * @param roomJID the JID of the room that had its subject changed. * @param user the JID of the user that changed the subject. * @param newSubject new room subject. */ void roomSubjectChanged(JID roomJID, JID user, String newSubject); }