Class GroupChatInvitation
- java.lang.Object
-
- org.jivesoftware.smackx.muc.packet.GroupChatInvitation
-
- All Implemented Interfaces:
org.jivesoftware.smack.packet.Element,org.jivesoftware.smack.packet.ExtensionElement,org.jivesoftware.smack.packet.NamedElement,org.jivesoftware.smack.packet.XmlElement,org.jivesoftware.smack.packet.XmlLangElement
public class GroupChatInvitation extends java.lang.Object implements org.jivesoftware.smack.packet.ExtensionElementA group chat invitation stanza extension, which is used to invite other users to a group chat room. To invite a user to a group chat room, address a new message to the user and set the room name appropriately, as in the following code example:Message message = new Message("user@chat.example.com"); message.setBody("Join me for a group chat!"); message.addExtension(new GroupChatInvitation("room@chat.example.com");); con.sendStanza(message);To listen for group chat invitations, use a StanzaExtensionFilter for thexelement name andjabber:x:conferencenamespace, as in the following code example:PacketFilter filter = new StanzaExtensionFilter("x", "jabber:x:conference"); // Create a stanza collector or stanza listeners using the filter...Note: this protocol is outdated now that the Multi-User Chat (MUC) XEP is available (XEP-45). However, most existing clients still use this older protocol. Once MUC support becomes more widespread, this API may be deprecated.
-
-
Constructor Summary
Constructors Constructor Description GroupChatInvitation(org.jxmpp.jid.EntityBareJid roomAddress)Creates a new group chat invitation to the specified room address.GroupChatInvitation(org.jxmpp.jid.EntityBareJid roomAddress, java.lang.String reason, java.lang.String password, boolean continueAsOneToOneChat, java.lang.String thread)Creates a new group chat invitation to the specified room address.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleancontinueAsOneToOneChat()Returns whether the groupchat room continues a one-to-one chat.static GroupChatInvitationfrom(org.jivesoftware.smack.packet.Stanza packet)Get the group chat invitation from the given stanza.java.lang.StringgetElementName()java.lang.StringgetNamespace()java.lang.StringgetPassword()Returns the password needed for entry.java.lang.StringgetReason()Returns the purpose for the invitation.org.jxmpp.jid.EntityBareJidgetRoomAddress()Returns the address of the group chat room.java.lang.StringgetThread()Returns the thread to continue.org.jivesoftware.smack.util.XmlStringBuildertoXML(org.jivesoftware.smack.packet.XmlEnvironment enclosingNamespace)
-
-
-
Field Detail
-
ELEMENT
public static final java.lang.String ELEMENT
Element name of the stanza extension.- See Also:
- Constant Field Values
-
NAMESPACE
public static final java.lang.String NAMESPACE
Namespace of the stanza extension.- See Also:
- Constant Field Values
-
QNAME
public static final javax.xml.namespace.QName QNAME
-
-
Constructor Detail
-
GroupChatInvitation
public GroupChatInvitation(org.jxmpp.jid.EntityBareJid roomAddress)
Creates a new group chat invitation to the specified room address. GroupChat room addresses are in the formroom@service, whereserviceis the name of group chat server, such aschat.example.com.- Parameters:
roomAddress- the address of the group chat room.
-
GroupChatInvitation
public GroupChatInvitation(org.jxmpp.jid.EntityBareJid roomAddress, java.lang.String reason, java.lang.String password, boolean continueAsOneToOneChat, java.lang.String thread)Creates a new group chat invitation to the specified room address. GroupChat room addresses are in the formroom@service, whereserviceis the name of group chat server, such aschat.example.com.- Parameters:
roomAddress- the address of the group chat room.reason- the purpose for the invitationpassword- specifies a password needed for entrycontinueAsOneToOneChat- specifies if the groupchat room continues a one-to-one chat having the designated threadthread- the thread to continue
-
-
Method Detail
-
getReason
public java.lang.String getReason()
Returns the purpose for the invitation.- Returns:
- the address of the group chat room.
-
getPassword
public java.lang.String getPassword()
Returns the password needed for entry.- Returns:
- the password needed for entry
-
getThread
public java.lang.String getThread()
Returns the thread to continue.- Returns:
- the thread to continue.
-
continueAsOneToOneChat
public boolean continueAsOneToOneChat()
Returns whether the groupchat room continues a one-to-one chat.- Returns:
- whether the groupchat room continues a one-to-one chat.
-
getRoomAddress
public org.jxmpp.jid.EntityBareJid getRoomAddress()
Returns the address of the group chat room. GroupChat room addresses are in the formroom@service, whereserviceis the name of group chat server, such aschat.example.com.- Returns:
- the address of the group chat room.
-
getElementName
public java.lang.String getElementName()
- Specified by:
getElementNamein interfaceorg.jivesoftware.smack.packet.NamedElement
-
getNamespace
public java.lang.String getNamespace()
- Specified by:
getNamespacein interfaceorg.jivesoftware.smack.packet.XmlElement
-
toXML
public org.jivesoftware.smack.util.XmlStringBuilder toXML(org.jivesoftware.smack.packet.XmlEnvironment enclosingNamespace)
- Specified by:
toXMLin interfaceorg.jivesoftware.smack.packet.Element
-
from
public static GroupChatInvitation from(org.jivesoftware.smack.packet.Stanza packet)
Get the group chat invitation from the given stanza.- Parameters:
packet- TODO javadoc me please- Returns:
- the GroupChatInvitation or null
-
-