Module ilusr.persistencelib
Interface IPersistenceManager
-
- All Known Implementing Classes:
XmlConfigurationManager
public interface IPersistenceManager- Author:
- Jeff Riggle
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidload()Loads the persistence object from disk to memory.voidprepare()Prepares the persistence object to be saved to disk.voidsave()Saves the persistence object to disk.
-
-
-
Method Detail
-
prepare
void prepare() throws TransformerConfigurationException, ParserConfigurationExceptionPrepares the persistence object to be saved to disk.
-
save
void save() throws TransformerException, ParserConfigurationException
Saves the persistence object to disk.
-
load
void load() throws SAXException, IOException, TransformerConfigurationException, ParserConfigurationException
Loads the persistence object from disk to memory.
-
-