| java.lang.Object org.objectweb.jonas.management.AbsReconfigurator
All known Subclasses: org.objectweb.jonas.management.ReconfiguratorProp, org.objectweb.jonas.management.ReconfiguratorXml,
AbsReconfigurator | abstract public class AbsReconfigurator implements Reconfigurator(Code) | | This class allows for persistent reconfiguration of a JOnAS service or of a JOnAS resource
This is an abstract class. It must be extended to handle properties or xml file
author: Adriana Danes author: Florent Benoit : Add an abstract class to define ReconfiguratorXml in addition to ReconfiguratorProp |
Method Summary | |
abstract public void | saveConfig(long sequence) |
configFileName | protected String configFileName(Code) | | Name of the file updated by the saveConfig method
|
lastSequence | protected long lastSequence(Code) | | The sequence number of the last treated management notification
|
logger | protected static Logger logger(Code) | | Logger used
|
name | protected String name(Code) | | Name of the JOnAS service or JOnAS resource to which this object is associated
|
AbsReconfigurator | public AbsReconfigurator(String name, String configFileName)(Code) | | Construct a reconfigurator for a JOnAS service or a JOnAS resource
Parameters: name - Name of the JOnAS service or JOnAS resource to which this object is associated Parameters: configFileName - name of the config file |
saveConfig | abstract public void saveConfig(long sequence) throws ReconfigException(Code) | | Saves the updated configuration
Parameters: sequence - the sequence number of management notification producing the save (in fact store) operation |
|
|