Package tigase.component.modules.impl
Class DiscoveryModule
- java.lang.Object
-
- tigase.component.modules.AbstractModule
-
- tigase.component.modules.impl.DiscoveryModule
-
- All Implemented Interfaces:
Module
- Direct Known Subclasses:
DiscoveryMonitorModule,EventbusDiscoveryModule
@Bean(name="disco", active=true) public class DiscoveryModule extends AbstractModule
-
-
Field Summary
Fields Modifier and Type Field Description static StringDISCO_INFO_XMLNSstatic StringDISCO_ITEMS_XMLNSstatic StringID-
Fields inherited from class tigase.component.modules.AbstractModule
eventBus, log, writer
-
Fields inherited from interface tigase.component.modules.Module
EMPTY_FEATURES
-
-
Constructor Summary
Constructors Constructor Description DiscoveryModule()
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description AdHocCommandModulegetAdHocCommandModule()Set<String>getAvailableFeatures()String[]getFeatures()Returns XMPP features offered by module.CriteriagetModuleCriteria()Returns critera used by Component to select module to handle incoming stanza.List<Module>getModules()protected PacketprepareDiscoInfoReponse(Packet packet, JID jid, String node, JID senderJID)Deprecated.protected PacketprepareDiscoInfoResponse(Packet packet, JID jid, String node, JID senderJID)voidprocess(Packet packet)Process incoming stanza.protected voidprocessAdHocCommandItems(Packet packet, JID jid, String node, JID senderJID)protected voidprocessDiscoInfo(Packet packet, JID jid, String node, JID senderJID)protected voidprocessDiscoItems(Packet packet, JID jid, String node, JID senderJID)voidsetAdHocCommandModule(AdHocCommandModule adHocCommandModule)voidsetModules(List<Module> modules)-
Methods inherited from class tigase.component.modules.AbstractModule
fireEvent, getEventBus, getWriter, setEventBus, setWriter, write, write
-
-
-
-
Field Detail
-
DISCO_INFO_XMLNS
public static final String DISCO_INFO_XMLNS
- See Also:
- Constant Field Values
-
DISCO_ITEMS_XMLNS
public static final String DISCO_ITEMS_XMLNS
- See Also:
- Constant Field Values
-
ID
public static final String ID
- See Also:
- Constant Field Values
-
-
Method Detail
-
getAdHocCommandModule
public AdHocCommandModule getAdHocCommandModule()
-
setAdHocCommandModule
public void setAdHocCommandModule(AdHocCommandModule adHocCommandModule)
-
getFeatures
public String[] getFeatures()
Description copied from interface:ModuleReturns XMPP features offered by module. Features will be returned by Service Discovery.- Returns:
- array of features or
null.
-
getModuleCriteria
public Criteria getModuleCriteria()
Description copied from interface:ModuleReturns critera used by Component to select module to handle incoming stanza.- Returns:
- criteria of selecting module.
-
process
public void process(Packet packet) throws ComponentException, TigaseStringprepException
Description copied from interface:ModuleProcess incoming stanza.- Parameters:
packet- receivedstanza.- Throws:
ComponentException- if stanza can't be processed correctly. ComponentException is converted to error stanza and returned to stanza sender.TigaseStringprepException- if there was an error during stringprep processing.
-
processAdHocCommandItems
protected void processAdHocCommandItems(Packet packet, JID jid, String node, JID senderJID) throws ComponentException, RepositoryException
-
processDiscoInfo
protected void processDiscoInfo(Packet packet, JID jid, String node, JID senderJID) throws ComponentException, RepositoryException
-
prepareDiscoInfoReponse
@Deprecated protected Packet prepareDiscoInfoReponse(Packet packet, JID jid, String node, JID senderJID)
Deprecated.
-
prepareDiscoInfoResponse
protected Packet prepareDiscoInfoResponse(Packet packet, JID jid, String node, JID senderJID)
-
processDiscoItems
protected void processDiscoItems(Packet packet, JID jid, String node, JID senderJID) throws ComponentException, RepositoryException
-
-