public class IQPrivacyHandler extends IQHandler implements ServerFeaturesProvider, UserEventListener
deliverer, sessionManager| Constructor and Description |
|---|
IQPrivacyHandler() |
| Modifier and Type | Method and Description |
|---|---|
Iterator<String> |
getFeatures()
Returns an Iterator (of String) with the supported features by the server.
|
IQHandlerInfo |
getInfo()
Returns the handler information to help generically handle IQ packets.
|
org.xmpp.packet.IQ |
handleIQ(org.xmpp.packet.IQ packet)
Handles the received IQ packet.
|
void |
initialize(XMPPServer server)
Initializes the basic module.
|
void |
userCreated(User user,
Map params)
A user was created.
|
void |
userDeleting(User user,
Map params)
A user is being deleted.
|
void |
userModified(User user,
Map params)
A user's name, email, or an extended property was changed.
|
destroy, getName, start, stoppublic org.xmpp.packet.IQ handleIQ(org.xmpp.packet.IQ packet)
throws UnauthorizedException
IQHandlerhandleIQ in class IQHandlerpacket - the IQ packet to handle.UnauthorizedException - if the user that sent the packet is not
authorized to request the given operation.public IQHandlerInfo getInfo()
IQHandlerpublic Iterator<String> getFeatures()
ServerFeaturesProvidergetFeatures in interface ServerFeaturesProviderpublic void userCreated(User user, Map params)
UserEventListeneruserCreated in interface UserEventListeneruser - the user.params - event parameters.public void userDeleting(User user, Map params)
UserEventListeneruserDeleting in interface UserEventListeneruser - the user.params - event parameters.public void userModified(User user, Map params)
UserEventListeneruserModified in interface UserEventListeneruser - the user.params - event parameters.public void initialize(XMPPServer server)
BasicModuleInitializes the basic module.
Inheriting classes that choose to override this method MUST call this initialize() method before accessing BasicModule resources.
initialize in interface Moduleinitialize in class IQHandlerserver - the server hosting this module.Copyright © 2003–2019 Ignite Realtime. All rights reserved.