Interface Migrating

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.lang.String getMessageTag()
      This method returns a string that is used to identify the state that is encoded by the implementing class and to select the messages that will be delivered to it.
      void restoreState​(org.w3c.dom.Element message)
      This method parses the XML element provided and restores the state of the object.
      org.w3c.dom.Element saveState​(org.w3c.dom.Document document)
      This method encodes the current state of the object and other relevant information in an XML element in order to be migrated.
    • Method Detail

      • getMessageTag

        java.lang.String getMessageTag()
        This method returns a string that is used to identify the state that is encoded by the implementing class and to select the messages that will be delivered to it.
        Returns:
        the object signature.
      • restoreState

        void restoreState​(org.w3c.dom.Element message)
        This method parses the XML element provided and restores the state of the object.
        Parameters:
        message - An XML element that contains the state to be parsed
      • saveState

        org.w3c.dom.Element saveState​(org.w3c.dom.Document document)
        This method encodes the current state of the object and other relevant information in an XML element in order to be migrated.
        Parameters:
        message - The element in which the state of the object should be encoded.