Package tigase.vhosts

Interface VHostItemExtensionIfc<T extends VHostItemExtensionIfc<T>>

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void addCommandFields​(java.lang.String prefix, Packet packet, boolean forDefault)
      Method adds custom extension fields to the ad-hoc form which will be sent to the user for filling with data required to create or update the VHost details.
      java.lang.String getId()
      Unique identifier of the extension.
      void initFromCommand​(java.lang.String prefix, Packet packet)
      Method initializes instance of a class with values provided by the user using ad-hoc command.
      void initFromElement​(Element item)
      Method initializes instances of a class with values from the element which contains configuration loaded from the database.
      java.lang.String toDebugString()
      Returns a string containing all information about the instance of the extension useful for debugging.
      Element toElement()
      Method serializes data stored by this instance to element which will be then stored in the database.
    • Method Detail

      • getId

        java.lang.String getId()
        Unique identifier of the extension. It has to be a valid XML element name!
      • initFromElement

        void initFromElement​(Element item)
        Method initializes instances of a class with values from the element which contains configuration loaded from the database. see VHostItemExtensionIfc::toElement()
        Parameters:
        item - - provided element with data
      • initFromCommand

        void initFromCommand​(java.lang.String prefix,
                             Packet packet)
                      throws java.lang.IllegalArgumentException
        Method initializes instance of a class with values provided by the user using ad-hoc command.
        Parameters:
        prefix - - prefix for data for fields added by this extension
        packet - - stanza with submitted ad-hoc command form
        Throws:
        java.lang.IllegalArgumentException
      • toElement

        Element toElement()
        Method serializes data stored by this instance to element which will be then stored in the database. Element name should be equal to the extension id.
      • addCommandFields

        void addCommandFields​(java.lang.String prefix,
                              Packet packet,
                              boolean forDefault)
        Method adds custom extension fields to the ad-hoc form which will be sent to the user for filling with data required to create or update the VHost details.
        Parameters:
        prefix - - prefix which should be used by each added field
        packet - - packet which will be sent to the user
        forDefault - - if true, we are preparing form for "default" configuration used by default by all vhosts.
      • toDebugString

        java.lang.String toDebugString()
        Returns a string containing all information about the instance of the extension useful for debugging.