org.jivesoftware.openfire.interceptor |
|
Java Source File Name | Type | Comment |
InterceptorManager.java | Class | An InterceptorManager manages the list of global interceptors and per-user
interceptors that are invoked before and after packets are read and sent.
If an interceptor is installed for a user then it will receive all packets
sent or received for any connection of that user.
PacketInterceptors that are invoked before the packet is sent or processed
(when read) may change the original packet or reject the packet by throwing
a
PacketRejectedException . |
PacketCopier.java | Class | Packet interceptor that notifies of packets activity to components that previously
subscribed to the notificator. |
PacketInterceptor.java | Interface | A packet interceptor encapsulates an action that is invoked on a packet immediately
before or after it was received by a SocketReader and also when the packet is about to
be sent in SocketConnection. |
PacketRejectedException.java | Class | Thrown by a PacketInterceptor when a packet is prevented from being processed. |