All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.xmpp.muc.DestroyRoom Maven / Gradle / Ivy

Go to download

Tinder is a Java based XMPP library, providing an implementation for XMPP stanzas and components. Tinders origins lie in code that's shared between Jive Software's Openfire and Whack implementations. The implementation that's provided in Tinder hasn't been written again from scratch. Instead, code has been moved from the original projects into Tinder, preserving al of the existing features and functionality. Most of the code that's now in Tinder is based on the org.xmpp package implementation that previously existed in Openfire and Whack. This is the code that defines classes such as Packet, JID, IQ, Component and their extensions. Additionally, some multi-purpose code (such as the DataForm and Result Set Management implementations have been moved to Tinder as well.

There is a newer version: 1.3.0
Show newest version
/**
 * Copyright (C) 2004-2008 Jive Software. All rights reserved.
 *
 * This software is published under the terms of the GNU Public License (GPL),
 * a copy of which is included in this distribution, or a commercial license
 * agreement with Jive.
 */

package org.xmpp.muc;

import org.dom4j.Element;
import org.xmpp.packet.IQ;
import org.xmpp.packet.JID;

/**
 * DestroyRoom is a packet that when sent will ask the server to destroy a given room. The room to
 * destroy must be specified in the TO attribute of the IQ packet. The server will send a presence
 * unavailable together with the alternate room and reason for the destruction to all the room
 * occupants before destroying the room.

* * When destroying a room it is possible to provide an alternate room which may be replacing the * room about to be destroyed. It is also possible to provide a reason for the room destruction. */ public class DestroyRoom extends IQ { /** * Creates a new DestroyRoom with the reason for the destruction and an alternate room JID. * * @param alternateJID JID of the alternate room or null if none. * @param reason reason for the destruction or null if none. */ public DestroyRoom(JID alternateJID, String reason) { super(); setType(Type.set); Element query = setChildElement("query", "http://jabber.org/protocol/muc#owner"); Element destroy = query.addElement("destroy"); if (alternateJID != null) { destroy.addAttribute("jid", alternateJID.toString()); } if (reason != null) { destroy.addElement("reason").setText(reason); } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy