Interface Migrating

All Known Implementing Classes:
FAtiMAConnector, FAtiMARetainer, SuperSimpleMigratingByInviteMindConnector, SuperSimpleMigratingMindConnector

public interface Migrating
  • Method Summary

    Modifier and Type
    Method
    Description
    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
    This method parses the XML element provided and restores the state of the object.
    saveState(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 Details

    • getMessageTag

      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(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

      Element saveState(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.