Class GetFormModule

  • All Implemented Interfaces:
    Module

    @Bean(name="mamGetFormModule",
          active=true)
    public class GetFormModule
    extends Object
    implements Module
    Implementation of module responsible for handling request to retrive form used in XEP-0313: Message Archive Management
    Created by andrzej on 19.07.2016.
    • Constructor Detail

      • GetFormModule

        public GetFormModule()
    • Method Detail

      • getFeatures

        public String[] getFeatures()
        Description copied from interface: Module
        Returns XMPP features offered by module. Features will be returned by Service Discovery.
        Specified by:
        getFeatures in interface Module
        Returns:
        array of features or null.
      • getModuleCriteria

        public Criteria getModuleCriteria()
        Description copied from interface: Module
        Returns critera used by Component to select module to handle incoming stanza.
        Specified by:
        getModuleCriteria in interface Module
        Returns:
        criteria of selecting module.
      • canHandle

        public boolean canHandle​(Packet packet)
        Description copied from interface: Module
        Returns true if Packet can be procesed by module. Default implementation uses Criteria.
        Specified by:
        canHandle in interface Module