Package org.jivesoftware.openfire
Class PresenceRouter
- java.lang.Object
-
- org.jivesoftware.openfire.container.BasicModule
-
- org.jivesoftware.openfire.PresenceRouter
-
- All Implemented Interfaces:
Module
public class PresenceRouter extends BasicModule
Route presence packets throughout the server.
Routing is based on the recipient and sender addresses. The typical packet will often be routed twice, once from the sender to some internal server component for handling or processing, and then back to the router to be delivered to it's final destination.
- Author:
- Iain Shigeoka
-
-
Constructor Summary
Constructors Constructor Description PresenceRouter()
Constructs a presence router.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
initialize(XMPPServer server)
Initializes the basic module.void
route(org.xmpp.packet.Presence packet)
Routes presence packets.void
routingFailed(org.xmpp.packet.JID recipient, org.xmpp.packet.Packet packet)
Notification message indicating that a packet has failed to be routed to the recipient.-
Methods inherited from class org.jivesoftware.openfire.container.BasicModule
destroy, getName, start, stop
-
-
-
-
Method Detail
-
route
public void route(org.xmpp.packet.Presence packet)
Routes presence packets.- Parameters:
packet
- the packet to route.- Throws:
NullPointerException
- if the packet is null.
-
initialize
public void initialize(XMPPServer server)
Description copied from class:BasicModule
Initializes the basic module.
Inheriting classes that choose to override this method MUST call this initialize() method before accessing BasicModule resources.
- Specified by:
initialize
in interfaceModule
- Overrides:
initialize
in classBasicModule
- Parameters:
server
- the server hosting this module.
-
routingFailed
public void routingFailed(org.xmpp.packet.JID recipient, org.xmpp.packet.Packet packet)
Notification message indicating that a packet has failed to be routed to the recipient.- Parameters:
recipient
- address of the entity that failed to receive the packet.packet
- Presence packet that failed to be sent to the recipient.
-
-