Package cmion.level2.migration
Interface Migrating
- All Known Implementing Classes:
FAtiMAConnector,FAtiMARetainer,SuperSimpleMigratingByInviteMindConnector,SuperSimpleMigratingMindConnector
public interface Migrating
-
Method Summary
Modifier and TypeMethodDescriptionThis 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.voidrestoreState(Element message) This method parses the XML element provided and restores the state of the object.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
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
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.
-