org.apache.commons.configuration.reloading |
The reloading package contains the definition of the
ReloadingStrategy interface, which provides automatic reloading
facilities for file based configurations. There are also some concrete
implementations of this interface that can be used out of the box.
$Id: package.html 439648 2006-09-02 20:42:10Z oheger $
|
Java Source File Name | Type | Comment |
FileAlwaysReloadingStrategy.java | Class | A specialized reloading strategy for files that will always report a change
of the monitored file. |
FileChangedReloadingStrategy.java | Class | A reloading strategy that will reload the configuration every time its
underlying file is changed.
This reloading strategy does not actively monitor a configuration file,
but is triggered by its associated configuration whenever properties are
accessed. |
InvariantReloadingStrategy.java | Class | A strategy that never triggers a reloading. |
ManagedReloadingStrategy.java | Class | A strategy to reload configuration based on management requests. |
ManagedReloadingStrategyMBean.java | Interface | MBean definition for managing configuration reload. |
ReloadingStrategy.java | Interface | A strategy to decide if a configuration should be reloaded. |
TestFileChangedReloadingStrategy.java | Class | Test case for the ReloadableConfiguration class. |
TestManagedReloadingStrategy.java | Class | Test case for the ManagedReloadingStrategy class. |