com.ibm.ras.mgr
Class RASDefaultDataStore
- java.lang.Object
-
- com.ibm.ras.mgr.RASDefaultDataStore
-
- All Implemented Interfaces:
- RASIDataStore
Deprecated.As of WAS 6.0, recommend using java.util.logging
public class RASDefaultDataStore extends java.lang.Object implements RASIDataStore
RASDefaultDataStoreis a default implementation of theRASIDataStoreinterface. In this implementation, no persistent storage is assumed, so the methods provide no function.
-
-
Constructor Summary
Constructors Constructor and Description RASDefaultDataStore()Deprecated.Creates aRASDefaultDataStore.
-
Method Summary
Methods Modifier and Type Method and Description RASBaseGrouprestoreConfig()Deprecated.Restores theRASManagerconfiguration from persistent storage.voidsaveConfig(RASBaseGroup baseGroup)Deprecated.Saves theRASManagerconfiguration to persistent storage.
-
-
-
Constructor Detail
-
RASDefaultDataStore
public RASDefaultDataStore()
Deprecated.Creates aRASDefaultDataStore.
-
-
Method Detail
-
restoreConfig
public RASBaseGroup restoreConfig()
Deprecated.Restores theRASManagerconfiguration from persistent storage. This method is called automatically when theRASManageris created and can be called anytime the stored configuration should be reloaded.Note: In this implementation, no persistent storage is assumed, so this method provides no function.
- Specified by:
restoreConfigin interfaceRASIDataStore- Returns:
- A
RASBaseGroupwhich holds the configuration loaded from persistent store.
-
saveConfig
public void saveConfig(RASBaseGroup baseGroup)
Deprecated.Saves theRASManagerconfiguration to persistent storage.Note: In this implementation, no persistent storage is assumed, so this method provides no function.
- Specified by:
saveConfigin interfaceRASIDataStore- Parameters:
baseGroup- TheRASBaseGroupwhich holds the configuration to be saved in persistent store.
-
-