mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

Matthew Swift
06.04.2014 9fdefdf307f1713e3bc64181d6baf746ac2b2044
OPENDJ-1235: Migrate configuration framework

* rename ConfigurationFramework#isEnabled() to isInitialized().
1 files modified
6 ■■■■ changed files
opendj-config/src/main/java/org/forgerock/opendj/config/ConfigurationFramework.java 6 ●●●● patch | view | raw | blame | history
opendj-config/src/main/java/org/forgerock/opendj/config/ConfigurationFramework.java
@@ -341,11 +341,11 @@
    }
    /**
     * Returns {@code true} if the configuration framework has been enabled.
     * Returns {@code true} if the configuration framework has been initialized.
     *
     * @return {@code true} if the configuration framework has been enabled.
     * @return {@code true} if the configuration framework has been initialized.
     */
    public synchronized boolean isEnabled() {
    public synchronized boolean isInitialized() {
        return loader != null;
    }