Class RemoteMUCUser
- java.lang.Object
-
- org.jivesoftware.openfire.muc.spi.RemoteMUCUser
-
- All Implemented Interfaces:
ChannelHandler<org.xmpp.packet.Packet>,MUCUser
public class RemoteMUCUser extends Object implements MUCUser
User hosted by another cluster node that is presente in a local room. Remote users are only created when processing unavailable presences sent when the node hosting the actual user went down. Each cluster node remaining in the cluster will create an unavailable presence for each user hosted in the cluster node that went down as a way to indicate the remaining room occupants that the user is offline.- Author:
- Gaston Dombiak
-
-
Constructor Summary
Constructors Constructor Description RemoteMUCUser(org.xmpp.packet.JID realjid, LocalMUCRoom room)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.xmpp.packet.JIDgetAddress()Obtain the address of the user.voidprocess(org.xmpp.packet.Packet packet)Process an XMPP packet.
-
-
-
Constructor Detail
-
RemoteMUCUser
public RemoteMUCUser(org.xmpp.packet.JID realjid, LocalMUCRoom room)
-
-
Method Detail
-
getAddress
public org.xmpp.packet.JID getAddress()
Description copied from interface:MUCUserObtain the address of the user. The address is used by services like the core server packet router to determine if a packet should be sent to the handler. Handlers that are working on behalf of the server should use the generic server hostname address (e.g. server.com).- Specified by:
getAddressin interfaceMUCUser- Returns:
- the address of the packet handler.
-
process
public void process(org.xmpp.packet.Packet packet) throws UnauthorizedException, PacketExceptionDescription copied from interface:ChannelHandlerProcess an XMPP packet.- Specified by:
processin interfaceChannelHandler<org.xmpp.packet.Packet>- Parameters:
packet- a packet to process.- Throws:
UnauthorizedException- if not allowed to process the packet.PacketException- thrown if the packet is malformed (results in the sender's session being shutdown).
-
-