OPENDJ-1235: Migrate configuration framework
* rename ConfigurationFramework#isEnabled() to isInitialized().
| | |
| | | } |
| | | |
| | | /** |
| | | * 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; |
| | | } |
| | | |